“JavaScript Regex” Ответ

JavaScript Regex

//Declare Reg using slash
let reg = /abc/
//Declare using class, useful for buil a RegExp from a variable
reg = new RegExp('abc')

//Option you must know: i -> Not case sensitive, g -> match all the string
let str = 'Abc abc abc'
str.match(/abc/) //Array(1) ["abc"] match only the first and return
str.match(/abc/g) //Array(2) ["abc","abc"] match all
str.match(/abc/i) //Array(1) ["Abc"] not case sensitive
str.match(/abc/ig) //Array(3) ["Abc","abc","abc"]
//the equivalent with new RegExp is
str.match('abc', 'ig') //Array(3) ["Abc","abc","abc"]
POG

Использование Regex в JavaScript

//Adding '/' around regex
var regex = /\s/g;
//or using RegExp
var regex = new RegExp("\s", "g");
TC5550

javascript retex match sequence

// Regular expression match sequence of characters
console.log(/abc/.test("abcde")); // true
console.log(/abc/.test("abxde")); // false
Code Wrangler

Регулярное выражение JavaScript

// Tests website Regular Expression against document.location (current page url)
if (/^https\:\/\/example\.com\/$/.exec(document.location)){
	console.log("Look mam, I can regex!");
}
Kaotik

JavaScript Regex

let str = 'hello world!';
let result = /^hello/.test(str);

console.log(result); // true
Bram Reyniers

Ответы похожие на “JavaScript Regex”

Вопросы похожие на “JavaScript Regex”

Больше похожих ответов на “JavaScript Regex” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования