$text = '2434__(this is something)-__2345';
preg_match('/[\p{Latin}]+/u', text, $matches);
这里我åªå¾—到一个匹é…的文本,但是如何匹é…文本ä¸å˜åœ¨æˆ–ä¸å˜åœ¨çš„所有符å·ï¼Ÿ
ç”案 0 :(得分:0)
这将匹é…所有符å·ï¼š
$match = $text
ç”案 1 :(得分:0)
我希望能ç†è§£ä½ 想è¦çš„东西..
preg_match('/^([^\p{Latin}]+)([\p{Latin}\s]*)([^\p{Latin}]+)$/u', $text, $matches);
print_r($matches);