Regular Expressions 101

Community Patterns

1

Find join

Python
no description available
Submitted by anonymous - 8 years ago
3

Non vowel words

ECMAScript (JavaScript)
/\b(+)\b/ig
Submitted by regexe - 8 years ago

Simple domain.tld tester

2

Regular Expression
ECMAScript (JavaScript)

/
^[a-zA-Z0-9-\_]+\.[a-zA-Z]+?$
/
i

Description

Loading markdown...
Submitted by Sergio de la Garza - 8 years ago