What does a '/' character mean in a regular expression?
I have observed the following example to match single or double digit numbers.
/^\d{1,2}$/
When I googled multiple regex cheat sheets, the forward slash did not show up as a character with meaning in regex....
What does '/' do in regex?