$text = '2434__(this is something)-__2345';
preg_match('/[\p{Latin}]+/u', text, $matches);
在这里我只得到文本的匹配,但是如何匹配文本中存在或不存在的所有符号?
$text = '2434__(this is something)-__2345';
preg_match('/[\p{Latin}]+/u', text, $matches);
在这里我只得到文本的匹配,但是如何匹配文本中存在或不存在的所有符号?