A regular expression that matches the number at the end of a string.
This regular expression can be used to strictly match and validate Canadian postal codes (cannot start with W or Z and cannot contain the letters D, F, I, O, Q, or U).
A regular expression that matches all blank lines in a document. This can be useful in deleting blank/empty lines generated in Sublime 2/3.
A regular expression to match all characters in a string except space (unless in quotes).
A regular expression that can be used to match and validate Arabic characters in a string.
A regular expression that can be used to match and validate Russian Cyrillic alphabet characters.
A useful regular expression that matches international phone numbers in the E.164 (The international public telecommunication numbering plan) format.
An All-in-one regular expression to valid dates in mm/dd/yyyy, mm-dd-yyyy, or mm.dd.yyyy format.
A regular expression that can be used to match and validate Persian characters in a string.
A Regular Expression to match a string containing at least 1 number and 1 character.
A regular expression to match any numbers greater than a specified number.
A regular expression to match the first word of each line in a multiline text block (excluding spaces).
A regular expression to match and validate a 4-digit year (from 1900 to 2099).
A Regular Expression that matches a string containing one word or another.
A Regular Expression that simply matches all forward slashes found in a string.
A Regular Expression to match two or more consecutive alphabetic characters in a string.
A Regular Expression to match non-alphanumeric characters.
A regular expression that characters repeated more than a specified number of times.
A regular expression that matches hexadecimal values.
A regular expression that matches duplicate words in a string. This can be useful in preventing duplicate words in your paragraphs.
A regular expression that matches all characters except digits 0-9. This can be useful to find out and replace all non-numeric characters in a string.