我在下面的 php 示例中有一个字符串。
$string = "This is my website example.org check it out!";
if( preg_match( '/\w+\.(?:com|org)/i', $string, $matches)) {
var_dump( $matches[0]);
echo '' . $matches[0] . '';
}
它会回响
string(11) "example.org" example.org
我只需要它只回显
例子.org