“Regex otrzymuj numer z ciągu” Kod odpowiedzi

Cyfrowe cyfry regularne

' 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

Numer dopasowania 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 otrzymuj numer z ciągu

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

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

Odpowiedzi podobne do “Regex otrzymuj numer z ciągu”

Pytania podobne do “Regex otrzymuj numer z ciągu”

Więcej pokrewnych odpowiedzi na “Regex otrzymuj numer z ciągu” w JavaScript

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

Przeglądaj inne języki kodu