Get YouTube video id from embed iframe code

iframe, php, regex, youtube

Solution

Using this pattern with a capturing group should give you the string you want:

d\/(\w+)\?rel=\d+"

example: https://regex101.com/r/kH5kA7/1

Problem

I want to get the YouTube video ID from YouTube embed code using preg_match or regex. For a example ``` <iframe width="560" height="315" src="//www.youtube.com/embed/0gugBiEkLwU?rel=0" frameborder="0" allowfullscreen></iframe> ``` I want to take the ID `0gugBiEkLwU` Can anyone tell me how to do this. Really appropriate your help.

Original source

Related problems