Regular Expressions 101

Community Patterns

Capture width value of svg tag.

0

Regular Expression
PCRE (PHP <7.3)

/
<svg (?:width="(\d*\.?\d*)"|(?:[^ >]*+\s++)+?width="(\d*\.?\d*))
/
gim

Description

Captures the width value of a single SVG tag.

Submitted by anonymous - 6 years ago