“JS Regex Find” Respostas de código

String js para regex

const regex = new RegExp('https:\\/\\/\\w*\\.\\w*.*', 'g');
garzj

JS Array Encontre Regex

const array = ["page=4", "sortOrder=asc", "datePosted=all-time", "sortOrder=desc"];
const match = array.find(value => /^sortOrder=/.test(value));
// match = "sortOrder=asc"
Unusual Unicorn

JS corresponde a qualquer string de número

const match = 'some/path/123'.match(/\/(\d+)/)
const id = match[1] // '123'
foloinfo

JS Regex Find

yourString.match(RegExp(/YOUR REGEX/))
Happy Hippopotamus

Respostas semelhantes a “JS Regex Find”

Perguntas semelhantes a “JS Regex Find”

Mais respostas relacionadas para “JS Regex Find” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código