Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to replace youtube links including the a tags with the iframe embed code. What I got so far:

$tube_link = "<a href="http://www.youtube.com/watch?v=XA5Qf8VHh9I&amp;feature=g-all-u&amp;context=G2f50f6aFAAAAAAAADAA" target="_blank" rel="nofollow">http://www.youtube.com/watch?v=XA5Qf8VHh9I&amp;feature=g-all-u&amp;context=G2f50f6aFAAAAAAAADAA</a>"

$search = '%<a(.*)(?:href="https?://)?(?:www\.)?(?:youtu\.be/|youtube\.com(?:/embed/|/v/|/watch\?v= ))([\w\-]{10,12})(?:)([\w\-]{0})\b%x';

$replace = '<iframe width="150" height="84" src="http://www.youtube-nocookie.com/embed/$2"></iframe>';

$embed_code = preg_replace($search, $replace, $tube_link);

Result:

<iframe src="http://www.youtube-nocookie.com/embed/XA5Qf8VHh9"></iframe>&amp;feature=g-all-u&amp;context=G2f50f6aFAAAAAAAADAA</a>

How can I get rid of the remaining:

&amp;feature=g-all-u&amp;context=G2f50f6aFAAAAAAAADAA</a>

Thnx!

share|improve this question
Don't use regular expressions to parse HTML. It's ill suited for the task. Use XPath or something similar instead. It will work a lot better. – Till Helge Mar 27 '12 at 16:04

2 Answers

up vote 1 down vote accepted

Use this regex:

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

TESTING:

$tube_link = '<a href="http://www.youtube.com/watch?v=XA5Qf8VHh9I&amp;feature=g-all-u&amp;context=G2f50f6aFAAAAAAAADAA" target="_blank" rel="nofollow">http://www.youtube.com/watch?v=XA5Qf8VHh9I&amp;feature=g-all-u&amp;context=G2f50f6aFAAAAAAAADAA</a>';
$search = '#<a(.*?)(?:href="https?://)?(?:www\.)?(?:youtu\.be/|youtube\.com(?:/embed/|/v/|/watch\?v=))([\w\-]{10,12}).*$#x';
$replace = '<iframe width="150" height="84" src="http://www.youtube-nocookie.com/embed/$2"></iframe>';
$embed_code = preg_replace($search, $replace, $tube_link);
var_dump($embed_code);

OUTPUT:

string(97) "<iframe width="150" height="84" src="http://www.youtube-nocookie.com/embed/XA5Qf8VHh9I"></iframe>"
share|improve this answer
Thnx, just what I was looking for. – soundseller Mar 27 '12 at 16:56
You're welcome, glad that it worked out. – anubhava Mar 27 '12 at 17:20
how would you do this for youtube links that have hashes at the end for timing? E.g: "youtube.com/…; – Luc Feb 28 at 11:56
@Luc This is very old question, pls post a new one and then I will try to find a suitable answer for you. – anubhava Feb 28 at 12:03
thanks @anubhava Please find my post here: stackoverflow.com/questions/15147993/… – Luc Feb 28 at 23:56

if you're sure that YouTube link is valid you can just use simple form

$search = '/^.*?v=(\w*?)&.*$/';

with replacement $1.

See example here!

Or add .*$ at the end of your pattern to mark everything until the end of subject string.

share|improve this answer
Thnx for your reply. Not exactly what I was looking for, but useful none the less. – soundseller Mar 27 '12 at 17:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.