Answers for "regex plus sign"

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

Browse Popular Code Answers by Language