What is the need for caret (^) and dollar symbol ($) in regular expression?

I have read recently about JavaScript regular expressions, but I am confused.

The author says that it is necessary to include the caret (^) and dollar symbol ($) at the beginning and end of the all regular expressions declarations.

Why are they needed?


Javascript RegExp() allows you to specify a multi-line mode (m) which changes the behavior of ^ and $.

^ represents the start of the current line in multi-line mode, otherwise the start of the string

$ represents the end of the current line in multi-line mode, otherwise the end of the string

For example: this allows you to match something like semicolons at the end of a line where the next line starts with "var" /;$\n\s*var/m

Fast regexen also need an "anchor" point, somewhere to start it's search somewhere in the string. These characters tell the Regex engine where to start looking and generally reduce the number of backtracks, making your Regex much, much faster in many cases.

NOTE: This knowledge came from Nicolas Zakas's High Performance Javascript

Conclusion: You should use them!


^ represents the start of the input string.

$ represents the end.

You don't actually have to use them at the start and end. You can use em anywhere =) Regex is fun (and confusing). They don't represent a character. They represent the start and end.

This is a very good website


They match the start of the string (^) and end of the string ('$').

You should use them when matching strings at the start or end of the string. I wouldn't say you have to use them, however.