Answers for "regex match strings that do not include numbers"

1

regex all not numbers

echo 1a2b3c | sed 's/[^0-9]//g'	#Replaces all not numbers
abc
Posted by: Guest on November-27-2020
4

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

Code answers related to "regex match strings that do not include numbers"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language