I know there is plenty of question answered over here https://stackoverflow.com/questions/tagged/youtube+regex, but not able find a question similar to me.
Any body has the JavaScript Regular expression for validating the YouTube VIDEO URL’s line below listed. Just want to know where such a URL can be possible
JavaScript
x
5
1
http://www.youtube.com/watch?v=bQVoAWSP7k4
2
3
4
5
— update 1– — update 2–
This one worked almost fine, but failed for the URL http://youtube.com/watch?v=bQVoAWSP7k4
JavaScript
1
7
1
var matches = $('#videoUrl').val().match(/http://(?:www.)?youtube.*watch?v=([a-zA-Z0-9-_]+)/);
2
if (matches) {
3
alert('valid');
4
} else {
5
alert('Invalid');
6
}
7
Advertisement
Answer
JavaScript
1
6
1
^http://(?:www.)?youtube.com/watch?v=w+(&S*)?$
2
3
//if v can be anywhere in the query list
4
5
^http://(?:www.)?youtube.com/watch?(?=.*v=w+)(?:S+)?$
6