Regular Expressions 101

Community Patterns

Anchor tag text and herf attribute value

0

Regular Expression
PCRE2 (PHP >=7.3)

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

Description

A RegEx for find out the match of the text in between a tag and href attribute value.

Submitted by Mosrur - 3 years ago