Comment puis-je tester si un RegEx correspond à une chaîne exactement ?
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
non plus
var r = /^a$/
ou
function matchExact(r, str) {
var match = str.match(r);
return match && str === match[0];
}
Ecrivez votre regex différemment:
var r = /^a$/;
r.test('a'); // true
r.test('ba'); // false
Si vous n'utilisez aucun espace réservé (comme le suggère "exactement"), pourquoi ne pas comparer les chaînes?
Si vous utilisez des espaces réservés, ^
et $
correspondent au début et à la fin d'une chaîne, respectivement.
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);