Regular Expressions 101

Community Patterns

Community Library Entry

0

Regular Expression
Created·2019-02-22 00:33
Flavor·Python

r'''
< ([a-z]+ #tag name ( #attributes begin \s+[a-z]+\s*= #attribute name \s*("([^"\\]|\\.)*"|\'([^\'\\]|\\.)*\') #attribute value is a quoted string )*\s* #attributes end /? #can close single tag | #or /[a-z]+) #closing tag >
'''
gix
Open regex in editor

Description

html tags with attributes

Submitted by anonymous