“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

Номер соответствия корпорации

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 Получите номер от строки

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

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

Ответы похожие на “regex Получите номер от строки”

Вопросы похожие на “regex Получите номер от строки”

Больше похожих ответов на “regex Получите номер от строки” по JavaScript

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

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