干し草の山に針が現れる回数を見つける必要があります。この時点まで、私は次のコードをまとめました。
<?php
$haystack = 'http://www.google.com';
$needle = 'a';
$contents = file_get_contents($haystack);
?>
$ contents(haystack --google.comのソースコード)に「a」(針)が表示される回数を調べたい。
ありがとうございました
substr_count
あなたが探しているものです。
http://cscircles.cemc.uwaterloo.ca/8-remix/にあるオンラインCSCウォータールーコースについて、これとまったく同じ質問に答えました。
needle = 'sses'
haystack = 'assesses'
count = 0
if needle in haystack:
index = haystack.index(needle)
string1 = haystack[index:len(needle) + index]
for position in range(0,len(haystack)):
if haystack[position:len(needle) + position] == string1:
count += 1
print (count)
...出力は2です。
トランスパナマバナナの場合...出力は6です
ニューモノウルトラマイクロスコピックシリコボルカノコニオーシスの場合...出力は9です