Help Javascript
.Any character^Start of subject$End of subject[Start character class definition]End character class definition|Alternates (OR)(Start subpattern)End subpattern\bWord boundary\BNon-worn boundary\nNewline\fForm feed character\rCarriage return character\tHorizontal tab character\vVertical tab character\wWord character\WNon-word character\dDigit\DNon-digit\sSpace character, equialent to [ \t\r\n\v\f]\SNon-space character, equialent to [^ \t\r\n\v\f]\Escape charactern*Zero or more of nn+One or more of nn?Zero or one occurrences of n{n}n occurrences{n,}At least n occurrences{,m}At the most m occurrences{n,m}Between n and m occurrences