Thursday, September 18, 2025
HomeLanguagesJavascriptJavaScript RegExp S Metacharacter

JavaScript RegExp \S Metacharacter

The RegExp \S Metacharacter in JavaScript is used to find the non-whitespace characters. The whitespace character can be a space/tab/new line/vertical character. It is the same as [^\t\n\r].

Syntax:

/\S/ 

or

new RegExp("\\S")

Syntax with modifiers:

/\S/g 

or

new RegExp("\\S", "g")

Example 1: This example matches the non-whitespace characters. 

Javascript




function geek() {
    let str1 = "neveropen @ _123_ $";
    let regex4 = /\S/g;
    let match4 = str1.match(regex4);
 
    console.log("Found " + match4.length
        + " matches: " + match4)
 
}
geek();


Output

Found 20 matches: G,e,e,k,s,f,o,r,G,e,e,k,s,@,_,1,2,3,_,$

Example 2: This example matches the non-whitespace characters. 

Javascript




function geek() {
    let str1 = "Geeky@128";
    let regex4 = new RegExp("\\S", "g");
 
    let match4 = str1.match(regex4);
 
    console.log("Found " + match4.length
        + " matches: " + match4)
 
}
geek();


Output

Found 9 matches: G,e,e,k,y,@,1,2,8

Supported Browsers: The browsers supported by RegExp \S Metacharacter are listed below:

  • Google Chrome
  • Apple Safari
  • Mozilla Firefox
  • Opera
  • Internet Explorer

We have a complete list of Javascript RegExp expressions, to check those please go through this JavaScript RegExp Complete Reference article.

We have a Cheat Sheet on Javascript where we covered all the important topics of Javascript to check those please go through Javascript Cheat Sheet-A Basic guide to JavaScript.  

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32299 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6660 POSTS0 COMMENTS
Nicole Veronica
11834 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11895 POSTS0 COMMENTS
Shaida Kate Naidoo
6779 POSTS0 COMMENTS
Ted Musemwa
7051 POSTS0 COMMENTS
Thapelo Manthata
6735 POSTS0 COMMENTS
Umr Jansen
6741 POSTS0 COMMENTS