A regular expression to match only alphabets and spaces.
A short Regular Expression that helps developers quickly extract and match a file extension from a string.
A regular expression to match hashtags (#) used in social media platforms.
A regular expression to validate Twitter username.
A useful regex pattern that matches a part of a string and ignores everything after a particular text.
A regular expression to match valid filenames. Can be used to validate filenames entered by a user of an application, or the filename of files uploaded from a scanner.
A regular expression which can match anything except one or more words in a string. It is a handy one if you want to skip some words in your index file.
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 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 the first word of each line in a multiline text block (excluding spaces).
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 duplicate words in a string. This can be useful in preventing duplicate words in your paragraphs.