php-正则表达式检查另一个字符串中是否存在一个字符串
作者:互联网
我正在尝试在/dir1/dir2/dir3/dir4/../dir7/dir8/dir9/target-.a-word1-word2-alpha2-alphanumberic1-alphanumberic2.md的字符串中查看/ target-的存在.
$re = '/^(.*?)(\/target-)(.*?)(\.md)$/i';
$str = '/dir1/dir2/dir3/dir4/../dir7/dir8/dir9/target-.a-word1-word2-alphanumberic1-alphanumberic2.md';
preg_match($re, $str, $matches, PREG_OFFSET_CAPTURE, 0);
// Print the entire match result
var_dump($matches);
演示:https://regex101.com/r/Saxk8x/1
是使用preg_match还是preg_match_all,还是有更快或更容易的方法?
即使Demo正常运行,preg_match或preg_match_all都返回null.
解决方法:
如果只需要查找确切的字符串/ target-,则可以使用strpos()(如果需要不区分大小写的搜索,可以使用stripos()).它会比最好的正则表达式快.
$pos = strpos($str, '/target-');
if ($pos !== false) {
var_dump($pos);
}
标签:preg-match-all,preg-match,string,php,regex 来源: https://codeday.me/bug/20191108/2007084.html