Regular Expressions 101

Community Patterns

3

Non vowel words

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

find all link(<a>) tags expect your links in href attribute

11

Regular Expression
ECMAScript (JavaScript)

/
<(a+) (?!(?:href=(["|']+)([http:\/\/])*link\.com([\/])?(.*?)["|'])) *[^>]*>(.*?)[^>]>
/
gm

Description

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