DEV Community

Lavender
Lavender

Posted on

RegEX: Anchors

Pattern Description
\G Start of match
^ Start of string
$ End of string
\A Start of string
\Z End of string
\z Absolute end of string
\b A word boundary
\B Non-word boundary

Useful links

Top comments (0)