Markdown Link Regex

Example:
\[([^\]]+)\]\(([^)]+)\) Matches: ✓ [Google](https://google.com) Group 1: Google Group 2: https://google.com
Match markdown links: \[([^\]]+)\]\(([^)]+)\)
Try Regex Lab →

FAQs

How to extract just the URL?

Use capture group 2: match[2] in most languages.