Answers for "regex check whitespace"

1

regex only letters not spaces

var re = /^[A-Za-z]+$/;
Posted by: Guest on November-09-2020
10

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 check whitespace"

Browse Popular Code Answers by Language