Search w3schools.com:

SHARE THIS PAGE

JavaScript RegExp \B Metacharacter

RegExp Object Reference JavaScript RegExp Object

Definition and Usage

The \B metacharacter is used to find a match not at the beginning or end of a word.

If no match is found, it returns null.

Syntax

new RegExp("\Bregexp")

or simply:

/\Bregexp/


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The \B metacharacter is supported in all major browsers.


Example

Example

Do a global search for "Schools" NOT at the beginning or end of a word in a string:

var str="Visit W3Schools";
var patt1=/\BSchool/g;

The marked text below shows where the expression gets a match:

Visit W3Schools

Try it yourself »


RegExp Object Reference JavaScript RegExp Object

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]