Reputation: 10476
I'm looking for a regex pattern that matches the following values:
Thanks
Upvotes: 0
Views: 1382
Reputation: 708046
You could use this regex:
/^\s*$/
Start of string
Followed by zero or more whitespace
End of string
Upvotes: 3