Python

Python 文字列の中に存在する文字列の数をカウント

文字列中に含まれる文字列の数を数えてみます。

print("42".count("4")) # 1
print("101".count("1")) # 2
print("hello".count("he")) # 1

大文字・小文字を無視してカウント

print("hello test HELLO, HELLo".upper().count("HELLO")) # 3