Answers for "regex if string is more than 4 digits"

VBA
2

regex match any number of digits

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
Posted by: Guest on October-24-2020
0

regex for exactly n digits

const isExactly5Digits = /bd{5}b/g.test(someString);

const isAtLeast5Digits = /(|)|d{5}/.test(someString);
Posted by: Guest on July-07-2021

Code answers related to "regex if string is more than 4 digits"

Code answers related to "VBA"

Browse Popular Code Answers by Language