Answers for "regex match any word after a space"

1

regex only letters not spaces

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

regec any character but a space

S  # Note this is a CAPITAL 'S'!
s is anything but a space
[^s] should same thing
Posted by: Guest on April-03-2021

Code answers related to "regex match any word after a space"

Browse Popular Code Answers by Language