regexmatch.dev
Explore
Open main menu
Save & Share
Facebook
Twitter
Tumblr
E-Mail
Pinterest
LinkedIn
Reddit
Test a string against CamelCase
Published on Tue Mar 01 2022
See if a string is in CamelCase format
Regex
Test String
CRSelectedString
Additional matching regexes for
Test a string against CamelCase
Test a string against CamelCase
See if a string is in CamelCase format
TV series season and episode names
This regex matches against season and series names
camelCase to slug case
Convert camelCase to slug case (lowercase, replace spaces with dashes) via regex
Find your Db from a sql query
A regex to find the db wich you're quering against to.
camelCase2snake_case
Convert camelCase to snake_case. In `Python` the `\L` case modifier in the substitution pattern to lower case is not supported. ```py def camelCase2snake_case(txt): """ Convert camelCase to snake_case https://regex101.com/r/D3a0de/2/ """ txt = re.sub(r'([A-Z]+)', '_\\1', txt.strip()) txt = txt.lower() return txt ``` [JV-conseil](https://github.com/JV-conseil)
Regex tutorial Case sensitive consonants
With regex you can count the number of matches. Can you make it return the number of uppercase consonants (B,C,D,F,..,X,Y,Z) in a given string? E.g.: it should return 3 with the text ABcDeFO!. Note: Only ASCII. We consider Y to be a consonant! Example: the regex /./g will return 3 when run against the string abc.
e164 format
e164 format
Validacija broja telefona
Format: +3816...
Email
email format control
CamelCase parsing helper
Helper regex for parsing CamelCase identifiers. Captures the first word of the identifier in group 1 and the rest in group 2. Iterate to consume the whole name. Works on fooBar, FooBar, and FOOBar.