* matches the previous token between zero and unlimited times, as many times as possible, giving back as needed (greedy)
\/ matches the character / literally (case sensitive)
\w matches any word character (equivalent to [a-zA-Z0-9_])
matches the character literally (case sensitive)
\. matches the character . literally (case sensitive)
- matches the character - literally (case sensitive)