标签: php regex string
我想检查字符串中是否存在特定字符串。我希望得到位置匹配。
例如:
$actual_string = "red"; $searching_string = "green red yellow";
众所周知,上面的搜索字符串“red”与实际字符串匹配,匹配的位置是第7位(包括空格)。
$output = 7;//red matched at 7th position
是否可以达到上述要求?请帮忙
答案 0 :(得分:2)
尝试使用strpos
strpos
echo strpos($searching_string, $actual_string);
但它会考虑从0开始的字符串位置。所以你需要+1来获得正确的位置。
0
+1