這是字符串:$title = "享受 20% 折扣";這是在 % 的情況下不起作用的代碼$re = '~(?=(?:\S*[^\w\s]){2,})\S+~'; $str = "Get 20% Off== FG"; preg_match_all($re, $str, $matches);print_r($matches[0]);我想得到20%這個(gè)詞
1 回答

守候你守候我
TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超10個(gè)贊
嘗試這個(gè):
$re = '(\d+(\.\d+)?%)';
$str = "Get 20% Off== FG";
preg_match_all($re, $str, $matches);
print_r($matches[0]);
輸出:
Array ( [0] => 20% )
- 1 回答
- 0 關(guān)注
- 154 瀏覽
添加回答
舉報(bào)
0/150
提交
取消