JavaScript RegExp \s Metacharacter
JavaScript RegExp Object
Definition and Usage
The \s metacharacter is used to find a whitespace character.
A whitespace character can be:
- A space character
- A tab character
- A carriage return character
- A new line character
- A vertical tab character
- A form feed character
Syntax
new RegExp("\s")
or simply:
/\s/ |
Example
Example
Do a global search for whitespace characters in a string:
var str="Is this all there is?";
var patt1=/\s/g;
|
All the spaces in the text will get a match (four matches):
Try it yourself »
|
JavaScript RegExp Object
Click here to design a Stunning Flash Website for Free
Wix is a revolutionary web design tool that provides anyone with the possibility to create professional and beautiful websites for free.
With e-commerce features, search engine visibility and many more professional tools, Wix is the ultimate solution for creating a spectacular site while saving tons of money.
|