<a matches the characters <a literally (case sensitive)
.*?
matches any character (except for line terminators)Line terminator(s) are \n
*? Quantifier — Matches between zero and unlimited times, as few times as possible, expanding as needed (lazy)
href=" matches the characters href=" literally (case sensitive)
1st Capturing Group (.*?)
.*?
matches any character (except for line terminators)Line terminator(s) are \n
*? Quantifier — Matches between zero and unlimited times, as few times as possible, expanding as needed (lazy)
" matches the character " literally (case sensitive)
.*?
matches any character (except for line terminators)Line terminator(s) are \n
*? Quantifier — Matches between zero and unlimited times, as few times as possible, expanding as needed (lazy)
> matches the character > literally (case sensitive)
.*
matches any character (except for line terminators)Line terminator(s) are \n
< matches the character < literally (case sensitive)
\/ matches the character / literally (case sensitive)
a> matches the characters a> literally (case sensitive)
g modifier: global. All matches (don't return after first match)