你好朋友我是 php 模式匹配的新手。
我尝试使用此代码在“@”和“空格”之间查找文本
<?php
$pattern = "%@(.*?)\s%";
$string = "this is @test string @match ";
preg_match_all($pattern, $string, $match);
echo "<pre>";
print_r($match);
echo "</pre>";
?>
它工作正常,没有错误......我的问题是什么是“。” 这意味着我知道其他符号的含义,例如
% is terminaor
( start of substring
) end of substring
* 0 or more match
等等..但不明白“。”的用法 在这里..任何人都可以解释一下。如果我在其他任何地方错了,请纠正我
提前致谢