我在JavaScript以下正則表達式,我想有在PHP完全相同的功能(或類似):將Js中的Regexp轉換爲PHP?
// -=> REGEXP - match "x bed" , "x or y bed":
var subject = query;
var myregexp1 = /(\d+) bed|(\d+) or (\d+) bed/img;
var match = myregexp1.exec(subject);
while (match != null){
if (match[1]) { "X => " + match[1]; }
else{ "X => " + match[2] + " AND Y => " + match[3]}
match = myregexp1.exec(subject);
}
此代碼搜索匹配「×牀」或「x的圖案的串或y牀「。 找到匹配項時,變量x和變量y需要進一步處理。問題:
你如何在php中構造這段代碼片段?
任何援助讚賞球員...
你到目前爲止嘗試過什麼?哪一部分對您有問題? –
Boolmark優秀的手冊在http://www.php.net/manual/en/ref.pcre.php。 –