Admittedly, Regular Expressions are not my strong point. I found a regex for YouTube videos online and used it.
(http://)?(?:www\.)?youtu(?:be\.com/watch\?v=|\.be/)(\w*)(&(amp;)?[\w\?=]*)?
However, several of the YouTube links attempted are not working. Here's an example of a URL that fails on this Regex
http://www.youtube.com/user/SWCCAC?feature=mhee#p/u/98/DuAqY5nQ7k0
Can anyone help me with a Regex that will work with all YouTube videos, but ONLY YouTube links are allowed.
Thanks