Python查找字符串s1中含有s2子串的个数
2021-06-05 09:02
标签:开始 数加 rgba python def div abc code color 输出: Python查找字符串s1中含有s2子串的个数 标签:开始 数加 rgba python def div abc code color 原文地址:https://www.cnblogs.com/v5captain/p/14634455.htmldef search_substr(s1, s2):
if len(s2) > len(s1):
return 0
cnt = 0
for i in range(len(s1)):
print(i)
tmp = s1[i:i+len(s2)]
print(tmp)
if s2 in tmp:
cnt += 1
return cnt
print(search_substr("dabcddabc","abc"))
0
dab
1
abc
2
bcd
3
cdd
4
dda
5
dab
6
abc
7
bc
8
c
2
上一篇:c语言中数组,一般数组
下一篇:C/C++中的字符串相关姿势
文章标题:Python查找字符串s1中含有s2子串的个数
文章链接:http://soscw.com/index.php/essay/90800.html