I am just starting to learn regular expression module within python and I am being asked to explain an interesting regular expression sequence.
/^[a-z0-9_-]{3,16}$/
I can explain the codes within the two forward slash that search for a username that is alphanumeric including hyphen and underscore and has at least 3 and at most 16 digits or characters.
Now my question is, what does it mean by the two forward slashes? I tried the web and it seems that most tutorial has an explanation for backward slash but not forward slash. Please advise. Thanks.