Answers for "include space in regex"

2

regex ignore spaces

s* ignore spaces
eg s*yourregexs*
Posted by: Guest on April-17-2020
-1

space allow in regex

Just add a space in your character class.

^[a-zA-Z0-9_ ]*$
Posted by: Guest on February-19-2021

Browse Popular Code Answers by Language