Answers for "regex match blank space"

0

regular expression not to allow space in javascript

var regexp = /^S*$/; // a string consisting only of non-whitespaces
Posted by: Guest on December-03-2020
11

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

Browse Popular Code Answers by Language