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

Key-Value list separated by newlines

1

Regular Expression
ECMAScript (JavaScript)

/
(?:[\n]{0,1})(\w+)(?:\ *=\ *)([^\n]*)(?:[\n]{0,1})
/
gm

Description

Loading markdown...
Submitted by acosw - 8 years ago