以下の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
エコーアウトするだけでいいのです
example.org