在句点之前查找所有字母数字字符串

时间:2017-05-05 17:36:10

标签: php regex preg-match pcre

如何检索非字母数字或下划线与句点之间的所有字符串?例如,对于以下字符串,请获取[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
(
)

1 个答案:

答案 0 :(得分:2)

使用以下正则表达式,您可以匹配非单词字符和句点之间的单词字符:

\W\K\w+(?=\.)

Live demo

说明:

  1. \W匹配非单词字符
  2. \K扔掉上一场比赛
  3. \w+(?=\.)任何字段字符
  4. PHP代码:

    preg_match_all('~\W\K\w+(?=\.)~', $str, $matches)