regex numeric digits

The solution for “regex numeric digits” can be found here. The following code will assist you in solving the problem.

‘ 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

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts