如何检索非字母数字或下划线与句点之间的所有字符串?例如,对于以下字符串,请获取[sources_1st,sources]
。 https://stackoverflow.com/a/10596688/1032531是一个类似的问题,但似乎并不适合我。
<?php
function check($pattern,$str)
{
echo($pattern.'<br>');
preg_match($pattern, $str, $matches);
echo('<pre>'.print_r($matches,1).'</pre>');
}
$str='fullname("protocol",coalesce(sources_1st.protocol,sources.protocol))';
echo($str.'<hr>');
check('/[^.]+\.[^.]+$/',$str);
check('/[\w]\..*$/',$str);
check('/[^\w]\..*$/',$str);
check('/\w\..*$/',$str);
check('/\w+(?=.*\.)$/',$str);
check('/\w+(?=.*\\.)$/',$str);
check('/\b[^ ]+\.$/',$str);
check('/\b[^ ]+\\.$/',$str);
check('/.*?(?=\.)$/',$str);
输出:
fullname("protocol",coalesce(sources_1st.protocol,sources.protocol))
--------------------------------------------------------------------------------
/[^.]+\.[^.]+$/
Array
(
[0] => protocol,sources.protocol))
)
/[\w]\..*$/
Array
(
[0] => t.protocol,sources.protocol))
)
/[^\w]\..*$/
Array
(
)
/\w\..*$/
Array
(
[0] => t.protocol,sources.protocol))
)
/\w+(?=.*\.)$/
Array
(
)
/\w+(?=.*\.)$/
Array
(
)
/\b[^ ]+\.$/
Array
(
)
/\b[^ ]+\.$/
Array
(
)
/.*?(?=\.)$/
Array
(
)
答案 0 :(得分:2)
使用以下正则表达式,您可以匹配非单词字符和句点之间的单词字符:
\W\K\w+(?=\.)
说明:
\W
匹配非单词字符\K
扔掉上一场比赛\w+(?=\.)
任何字段字符PHP代码:
preg_match_all('~\W\K\w+(?=\.)~', $str, $matches)