Grundlagen
- Ersetzung var str="foobar-foobar" undefined str.replace('foo','bar') "barbar-foobar"
- Gibt boolean zurück, ob String enthalten ist var str = "Hello world, welcome to the universe."; str.includes("world"); true
Regulärer Ausdruck (Regex)
- replace() var re = /(\w+)\s(\w+)/igm; var str = 'John Smith'; var newstr = str.replace(re, '$2, $1'); console.log(newstr); // Smith, John Smith, John
- match() var re = /(\w+)\s(\w+)/igm; var str = 'John Smith foobar John Smith'; var newstr = str.match(re); console.log(newstr); // Smith, John VM29918:4 (2) ["John Smith", "foobar John"]
- test(): True or false var re = /(\w+)\s(\w+)/igm; var str = 'John Smith foobar John Smith'; var newstr = re.test(str) console.log(newstr); VM30242:4 true undefined var re = /(\w+)\s\n\n\n\n(\w+)/igm; var str = 'John Smith foobar John Smith'; var newstr = re.test(str) console.log(newstr); VM30250:4 false
Beachten Sie, dass test() das Regex-Muster zu einem Objekt macht, im Gegensatz zu replace() und anderen. Der Schlüssel ist, das Regex-Muster separat zu definieren.
- Modifikatoren
- i: Führt Groß-/Kleinschreibung-unabhängigen Abgleich durch
- g: Führt globalen Abgleich durch (findet alle Übereinstimmungen, anstatt nach der ersten zu stoppen)
- m: Führt mehrzeiligen Abgleich durch
Referenzen: replace: https://www.w3schools.com/jsref/jsref_obj_regexp.asp https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/String/replace match: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/String/match https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String