“Encontre todas as ocorrências de uma substring em uma string no python” Respostas de código

Encontre todas as ocorrências de uma substring em uma string no 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

Encontre todas as ocorrências de uma substring em uma string no 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

Respostas semelhantes a “Encontre todas as ocorrências de uma substring em uma string no python”

Perguntas semelhantes a “Encontre todas as ocorrências de uma substring em uma string no python”

Mais respostas relacionadas para “Encontre todas as ocorrências de uma substring em uma string no python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código