JavaScript RegExp ^ Quantifier

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








googletag.cmd.push(function() googletag.display('div-gpt-ad-1422003450156-2'); );



JavaScript RegExp ^ Quantifier


❮ JavaScript RegExp Object




Example


Do a global search for "Is" at the beginning of a string:



var str = "Is this his";

var patt1 = /^Is/g;

<!--

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



Is this his
-->
Try it Yourself »


Definition and Usage


The ^n quantifier matches any string with n at the beginning of it.


Tip: Use the n$ quantifier
to match any string with n at the END of it.



Browser Support















Expression
^ Yes Yes Yes Yes Yes


Syntax




new RegExp("^n")


or


/^n/


Syntax with modifiers



new RegExp("^n", "g")


or simply:


/^n/g



More Examples



Example


Do a global, case-insensitive, multiline search for "is" at the beginning of each line in a
string:



var str = "nIs thnis hnis?";

var patt1 = /^is/gmi;

<!--

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




Is th
is h
is?
-->
Try it Yourself »




❮ JavaScript RegExp Object

Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

PHP code is not being executed, instead code shows on the page

Malaysia to Papua New Guinea by motorcycle?