web-dev-qa-db-fra.com

Faire correspondre la chaîne exacte avec JavaScript

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
35
Serhat Ozgel

non plus

var r = /^a$/

ou

function matchExact(r, str) {
   var match = str.match(r);
   return match && str === match[0];
}
78
Jimmy

Ecrivez votre regex différemment:

var r = /^a$/;
r.test('a'); // true
r.test('ba'); // false
16
Prestaul

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.

8
Svante
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);
0