Answers for "only 1 white space on regex"

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 "only 1 white space on regex"

Browse Popular Code Answers by Language