“regex Obtenha o número da string” Respostas de código

dígitos numéricos regex

' Needs reference "Microsoft VBScript Regular Expressions 5.5"
Dim rRegex As Object
Set rRegex = CreateObject("VBScript.RegExp")

rRegex.Pattern = "[0-9]{8,9}"   ' 8 or 9 numbers
MsgBox rRegex.test("12345678")  ' True

rRegex.Pattern = "[0-9]+"       ' Numeric of any size
MsgBox rRegex.test("12345")     ' True
VasteMonde

Número da correspondência regex

For matching an integer number of one single char/digit, specify:
[0-9]
But for matching any number of more than one char/digit; add "+":
[0-9]+
Example for matching hour with minutes of HH:MM format in a file:
grep "[0-9]\+\:[0-9]\+" file.txt
Armandres

regex Obtenha o número da string

const regex = /(12345)/gm;
const string = 'My id is 12345.';

console.log(string.replace(regex, '54321')) // My id is 54321.
Maxime Laplace

Respostas semelhantes a “regex Obtenha o número da string”

Perguntas semelhantes a “regex Obtenha o número da string”

Mais respostas relacionadas para “regex Obtenha o número da string” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código