vote up 0 vote down star

This should be very simple ( when you know the answer ). From this question

I want to give it a try to the posted solution. And my question is:

How to get the parameter value of a given url using javascript regexp?

I have:

 http://www.youtube.com/watch?v=Ahg6qcgoay4

I need:

 Ahg6qcgoay4

I tried:

http://www.youtube.com/watch\\?v=(w{11})

But: I suck...

flag

75% accept rate
checkout also this question: stackoverflow.com/questions/738351/… – dfa Aug 14 at 22:59
@dfa: I might need that in the future, thanks for the link. I guess I should probably get this regexp right first :) – Oscar Reyes Aug 15 at 0:35

2 Answers

vote up 2 vote down check

You almost had it, just need to escape special regex chars:

regex = /http\:\/\/www\.youtube\.com\/watch\?v=(\w{11})/;

url = 'http://www.youtube.com/watch?v=Ahg6qcgoay4';
id = url.match(regex)[1]; // id = 'Ahg6qcgoay4'
link|flag
1  
Should probably also put in a test for if the match fails, such as var m = url.match(regex); id = (m && m.length > 1) ? m[1] : null; – Tadmas Aug 14 at 22:55
I was struggling with that!! – Oscar Reyes Aug 14 at 23:09
vote up 0 vote down

Not tested but this should work:

/\?v=([a-z0-9\-]+)\&?/i
link|flag
some youtube urls have a - as well, such as... youtube.com/watch?v=22hUHCr-Tos – MyWhirledView Aug 14 at 23:18
@MyWhriledView Updated for the hyphen – Swish Aug 14 at 23:33

Your Answer

Get an OpenID
or

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