“String.regex mecz” Kod odpowiedzi

Regex.Match

const paragraph = 'The quick brown fox jumps over the lazy dog. It barked.';
const regex = /[A-Z]/g;
const found = paragraph.match(regex);

console.log(found);
// expected output: Array ["T", "I"]
Gil Reich

String.regex mecz

const str = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
const regexp = /[A-E]/gi;
const matches_array = str.match(regexp);

console.log(matches_array);
// ['A', 'B', 'C', 'D', 'E', 'a', 'b', 'c', 'd', 'e']
Vast Vendace

Dokładne dopasowanie Regex

use ^ and $ to match the start and end of your string
^matchmeexactly$
Friendly Hawk

Odpowiedzi podobne do “String.regex mecz”

Pytania podobne do “String.regex mecz”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu