Regular Expressions 101

Community Patterns

Community Library Entry

0

Regular Expression
Created·2017-11-26 18:59
Flavor·PCRE (Legacy)

/
(?<=\:)(.*?)(?=\;)
/
g
Open regex in editor

Description

This matches content between two characters

ie. height: 400px;

matches between : and ;

Submitted by anonymous