Answers for "regex only digits with white space"

3

only letters and spaces regex

/^[a-zA-Zs]*$/g
Posted by: Guest on April-12-2021
12

whitespace regex

s is the regex character for whitespace. It matches spaces, new lines, carriage returns, and tabs.
Posted by: Guest on October-15-2020

Code answers related to "regex only digits with white space"

Browse Popular Code Answers by Language