“Finden Sie alle Vorkommen eines Substrings in einer Schnur in Python” Code-Antworten

Finden Sie alle Vorkommen eines Substrings in einer Schnur in Python

import re 
 
# defining string  
str1 = "This dress looks good; you have good taste in clothes."
 
#defining substring 
substr = "good"
 
print("The original string is: " + str1) 
 
print("The substring to find: " + substr) 
 
result = [_.start() for _ in re.finditer(substr, str1)] 
 
print("The start indices of the substrings are : " + str(result))

# Output - 
# The original string is: This dress looks good; you have good taste in clothes.
# The substring to find: good
# The start indices of the substrings are : [17, 34]
Rajitha Amarasinghe

Finden Sie alle Vorkommen eines Substrings in einer Schnur in Python

#defining string and substring
str1 = "This dress looks good; you have good taste in clothes."
substr = "good"

#occurrence of word 'good' in whole string
count1 = str1.count(substr)
print(count1)

#occurrence of word 'good' from index 0 to 25
count2 = str1.count(substr,0,25)
print(count2)

# output -
# 2
# 1
Rajitha Amarasinghe

Ähnliche Antworten wie “Finden Sie alle Vorkommen eines Substrings in einer Schnur in Python”

Fragen ähnlich wie “Finden Sie alle Vorkommen eines Substrings in einer Schnur in Python”

Weitere verwandte Antworten zu “Finden Sie alle Vorkommen eines Substrings in einer Schnur in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen