Webflags: g
YouTube Video ID
Extract 11-character YouTube video IDs from long URLs, short URLs, or embed URLs.
Try it in RegexPro →Available in
Pattern
regexengine-agnostic
(?:youtube\.com\/watch\?v=|youtu\.be\/|youtube\.com\/embed\/)([\w\-]{11}) (flags: g)Raw source: (?:youtube\.com\/watch\?v=|youtu\.be\/|youtube\.com\/embed\/)([\w\-]{11})
How it works
Matches any of three URL forms (watch?v=, youtu.be/, embed/) and captures the 11-character video ID that follows. The ID uses word characters and hyphens.
Examples
Input
https://www.youtube.com/watch?v=dQw4w9WgXcQMatches
youtube.com/watch?v=dQw4w9WgXcQ
Input
https://youtu.be/dQw4w9WgXcQMatches
youtu.be/dQw4w9WgXcQ
Input
not a youtube urlNo match
—Common use cases
- •Content scraping and normalisation
- •Embed URL rewriting
- •Analytics tagging and attribution
- •Link preview rendering
Related patterns
CSS Class from `class=""` Attribute
WebExtract the value of a `class="..."` attribute from raw HTML, handling double or single quotes.
GitHub Repository URL
WebMatch GitHub repository URLs and capture the owner and repo segments.
LinkedIn Profile URL
WebMatch LinkedIn profile URLs and capture the profile slug.
Twitter / X URL
WebMatch Twitter/X profile and status URLs, capturing the handle and (optional) tweet ID.