如何測試RegEx是否與字符串完全匹配?與JavaScript匹配確切字符串
var r = /a/;
r.test("a"); // returns true
r.test("ba"); // returns true
testExact(r, "ba"); // should return false
testExact(r, "a"); // should return true
如何測試RegEx是否與字符串完全匹配?與JavaScript匹配確切字符串
var r = /a/;
r.test("a"); // returns true
r.test("ba"); // returns true
testExact(r, "ba"); // should return false
testExact(r, "a"); // should return true
要麼
var r = /^a$/
或
function matchExact(r, str) {
var match = str.match(r);
return match != null && str == match[0];
}
寫您的正則表達式是不同的:
var r = /^a$/;
r.test('a'); // true
r.test('ba'); // false
如果你不使用任何佔位符(如以 「完全」,似乎暗示),字符串比較instea如何d?
如果確實使用佔位符,^
和$
分別與字符串的開頭和結尾匹配。
var data = {"values": [
{"name":0,"value":0.12791263050161572},
{"name":1,"value":0.13158780927382124}
]};
//JSON to string conversion
var a = JSON.stringify(data);
// replace all name with "x"- global matching
var t = a.replace(/name/g,"x");
// replace exactly the value rather than all values
var d = t.replace(/"value"/g, '"y"');
// String to JSON conversion
var data = JSON.parse(d);
你打算寫「var r = /./;」嗎? – Prestaul 2009-01-15 15:49:49
我打算寫/ a /(:謝謝。 – 2009-01-15 16:17:46