Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is my code:

$(document).ready(function(){

    var valid_url = new RegExp('http://[www\.]?youtube.com/watch\?v=[a-zA-Z0-9_-]*', '');

    $('a').each(function(){

        // Check if it's a valid Youtube URL
        var link = $(this).attr('href');
        if( valid_url.test( link ) ){
            alert( "valid" );
        }

    });

});

But it doesn't seem to match the Youtube URL's correctly. I think it's the way I'm trying to match it using regex. I've tested the regex itself multiple ways and it is indeed correct, but I'm not familiar with using regex with Javascript so might be using it incorrectly.

Any help is appreciated, thanks.

share|improve this question

1 Answer

Use parentheses around the www., not square brackets. Square brackets are for character classes. [www\.] is the same as [w.] and means "match a single w or literal .", not exactly what you intend.

Also, the literal dash you have at the end of the regex needs to be escaped.

http://(www\.)?youtube.com/watch\?v=[a-zA-Z0-9_\-]*
share|improve this answer
That simply makes that character group a capturing group. Why do this? – Alex Nov 22 '10 at 4:23
@Alex I assume because the author wants to be able to make the www\. characters optional. – Tim McNamara Nov 22 '10 at 4:27

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.