Answers for "regex match plus sign or number"

VBA
2

regex match number

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 plus sign

Use plus sign "+" in regex for matching the subset of combinations including 
a pattern. For example to match a number multiple digits in a file:
grep "[0-9]+" file.txt
Posted by: Guest on October-24-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language