A regular expression to match anything after the first space in a string.
A regular expression to match all words that start with a specific character (e.g. #, @, etc) in a string.
A regular expression to check if a string is all uppercase (or lowercase) letters.
A handy regular expression that can be used to match all #hashtags in strings, like Twitter tweets and Facebook posts.
A regular expression that allows you to validate a string with no whitespace at the beginning and end.
A regular expression to match the first line of a file. Can be useful in adding more content to the beginning or end of the first line of your code.
A regular expression to match all whitespaces except new links in your content.
A Regular Expression to match two characters surrounding a single space, with support for enforcing a minimum and maximum number of characters.
A Regular Expression to validate and match a string that starts and ends with an alphabetic character.
A regular expression that matches a slash at the end of a string.
A regular expression to match all words excluding digits
A regular expression that matches the first word after a specific word in a sentence.
A regular expression that determines if a given string has all unique (none repeating) characters.
A regular expression that matches multiple Email addresses separated by semicolons in a string.
A regular expression to extract the filename from a given path.
A quick regular expression that matches all content before an underscore(_) in a string.
A Regular Expression that matches all spaces and newlines but isn't in quotes.
A regular expression that matches the last occurrence of characters in a string.
A Regular Expression to match a non-numeric string that is not composed entirely of numbers.
A regular expression to match non-blank and non-empty strings.
A regular expression to get the text before the first separating character (like comma, space, etc).