的模式我有一些圖案,我試圖做...一個問題,這是我的代碼:我一直在努力爲這個傢伙內找到長字符串
$test = 'this is a simply test';
preg_match_all("/^this is a [a-zA-Z] test$/", $test, $op_string);
print_r($op_string);
,但這不能正常工作。這應該輸出:simply
該模式必須包含相同的$test
(字符串我的意思是......它不能只包含[a-zA-Z],因爲我們需要更精確地找到它) 。
非常感謝!
這個作品真棒!謝謝! – user3795437 2014-12-06 10:01:46
@ user3795437也謝謝。 – 2014-12-06 10:03:19
'([a-zA-Z \ s] +)'實際上是錯誤的正則表達式匹配'只需' – anubhava 2014-12-06 10:11:11