首先,讓我聲明一下,我在寫這篇文章之前花了2個多小時在弄正規表示式。悲~悲~悲~
按照一般的思路,先來看看其他幾個插找方式: 我以字串
var str = "eattd gebcat gedat jadu geat beu";
為範例。
1.以"ge"為開頭的,結果應該是"gebcat, gedat, geat"。因為單字以"ge"開頭,則我可以放入一個新的陣列以供以後使用。
var exp1 = /bgew /ig; 🎜>var matchedStr = exp1.exec(str);
while (matchedStr != null && matchedStr.index if (matchedStr[0] != null) {
inv.innerHTML = "
The result is: " matchedStr[0];
//newStr = newStr.replace(matchedStr[0]);
wordsArr.push(matchedStr[0]) ;
}
matchedStr = exp1.exec(str);
}
2.以"at"結尾的單詞,結果為"gebcat","gedat", "geat "。同樣,我可以放入數組。
var exp1 = /w (atb)/ig; 🎜>
3.不以"ge"開頭的單詞,我需要另外一個數組來存放。
複製程式碼
程式碼如下: var exp1 = /b(?!gege)w /?! ig;
var wordsArr = new Array();
var matchedStr = exp1.exec(str);
while (matchedStr != null && matchedStr.index if (matchedStr[0] != null) {
inv.innerHTML = "
The result is: " matchedStr[0];
newStr = newStr.replace(matchedStr[0]);
wordsArr.push(matchedStr[0]);
}
matchedStr = exp1.exec(str);
}
//wordsArr = newStr.split(" ") ;
for (var i = 0; i if (wordsArr[i] == "undefined") {
wordsArr.splice(i,1) ;
} else
i
}
4. 不以"at"結尾的的單詞,好,問題來了。 Javascript中的Regex比較弱,不支援逆環視否定,因此不能寫:
程式碼如下:
var exp1 = /w (?
而
複製碼🎜>
代碼如下:
var exp1 = /w (?!atb)/ig;
的意思中單字結尾的右邊不能為" at ",那是不可能的,bw就是找出單字邊界。我換一個角度來寫,找到以at結尾的,把該單字從原來的字串中刪除。然後放入一個新數組。 複製程式碼
程式碼如下:
function RegularExpTest(>
function RegularExpTest() {v = doct. .getElementById("RegexTest");
var str = "eattd gedbcat gedat jadu geat beu";
var newStr = str;
var exp1 = /w atb/ig;
var wordsArr = new atb/ig;
var wordsArr = new new Array();
var matchedStr = exp1.exec(str);
while (matchedStr != null && matchedStr.index if (matchedStr[0] ! = null) {
inv.innerHTML = "
The result is: " matchedStr[0];
newStr = newStr.replace(matchedStr[0]);
}
matchedStr = expexp11. exec(str);
}
wordsArr = newStr.split(" ");
for (var i = 0; i if (wordsArr[i] == "undefined") {
wordsArr.splice(i,1);
} else
i
}
inv.innerHTML = "
The result is: " wordsArr;
} OK,完成了! 思則得,不思則不得。