I am trying to extract the video id from the url
http://www.youtube.com/v/Ig1WxMI9bxQ&hl=fr&fs=1&color1=0x2b405b&color2=0x6b8ab6
What i use the Pattern.compile("/v/([^&]*)") i get null and 
if i use Pattern.compile("/v/([^/]*)") i get the below output 
Ig1WxMI9bxQ&hl=fr&fs=1&color1=0x2b405b&color2=0x6b8ab6
how can i extract the Ig1WxMI9bxQ alone.
 
     
     
     
    