Regular Expressions 101

Community Library Entry

0

Regular Expression
PCRE (PHP <7.3)

/
(<a.*?(?:href=")?)?(https?:\/\/)?(?:www\.)?(?:youtu\.be\/|youtube\.com(?:\/embed\/|\/v\/|\/watch?.*?v=))([\w\-]{10,12})(.*<\/a>?)?
/
xg

Description

this will find any type of youtube embed or link to a video so you can replace with your own IFRAME

$youtube_replacement = '<div class="videoWrapper col_full f'.$right.' col_last"><iframe width="560" height="315" src="https://www.youtube.com/embed/$4" frameborder="0" allowfullscreen></iframe></div>';

Submitted by anonymous - 7 years ago