JavaScript Regular Expressions Quick Cheatsheet
^/$: Start / End of string or line.\d: Any digit (0-9).\w: Word character (alphanumeric & underscore).+/*/?: 1 or more / 0 or more / optional.
Real-time JavaScript Regular Expression tester with match highlighting and cheatsheet.
^ / $: Start / End of string or line.\d: Any digit (0-9).\w: Word character (alphanumeric & underscore).+ / * / ?: 1 or more / 0 or more / optional.