Regular Expressions 101

Community Patterns

3

Non vowel words

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

Mime type parser

2

Regular Expression
.NET (C#)

@"
(?<type>\w*)\/(?<subtype>[\w\.-]*)(?:\+(?<subtype>[\w\.-]*))?(?:;(?:(?<key>.+)=(?<value>.*);)*(?<key>.+)=(?<value>.*))?
"
g

Description

Loading markdown...
Submitted by Vespion - 7 months ago
(Last modified 7 months ago)