Answers for "regex number sign"

13

regex for number and letters

let regex = /[^A-Za-z0-9]+/
Posted by: Guest on July-16-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 "Javascript"

Browse Popular Code Answers by Language