“Python получить шаблон из строки” Ответ

Python получить шаблон из строки

Get occurrence of substring in string 

def count_substring(string, sub_string):
    
    mycount = 0
    result = 0
    for x in string:
        if x == sub_string[0]:
            if sub_string == string[mycount:len(sub_string)+mycount]:
                result = result + 1
        mycount = mycount + 1    
    return result
Headache reliver

Получить шаблон от String Python

How to get substring in string 
import re
def count_substring(string, sub_string):
    result = [(_.start(), _.end()) for _ in re.finditer(sub_string, string)]
    
    return len(result[0])
Headache reliver

Ответы похожие на “Python получить шаблон из строки”

Вопросы похожие на “Python получить шаблон из строки”

Больше похожих ответов на “Python получить шаблон из строки” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования