Results 1 to 6 of 6
- 06-25-2011, 04:45 PM #1
Member
- Join Date
- Jun 2011
- Posts
- 4
- Rep Power
- 0
Please how do i extract youtube video id from these links maybe using Regex
ThanksJava Code:http://www.youtube.com/v/[videoid] http://www.youtube.com/watch?v=[videoid] http://www.youtube.com/watch?v=[videoid]&feature=blabla
Last edited by DarrylBurke; 06-25-2011 at 05:00 PM. Reason: Removed automatically generated url tags and wrapped the urls in code tags
- 06-25-2011, 05:02 PM #2
The samples you posted don't reveal a regularity that could be used to extract the ID. Does the "videoid" follow any pattern?
db
- 06-25-2011, 05:27 PM #3
Member
- Join Date
- Jun 2011
- Posts
- 4
- Rep Power
- 0
the video id is a 11 character string that could be a-z A-Z 0-9 underscore and dash
it could be
youtube.com/?v=videoid
youtube.com/v/videoid
youtube.com/watch?v=videoid
youtube.com/watch?v=videoid&feature=whatever&this=that
i got stole this code
from here (http://gdata-java-client.googlecode....iteClient.java)Java Code:Pattern p = Pattern.compile("http.*\\?v=([a-zA-Z0-9_\\-]+)(?:&.)*"); Matcher m = p.matcher(input); if (m.matches()) { input = m.group(1); } return input;
i know thats what the coder used for videoid extraction but i just dont know if this solve the above
- 06-25-2011, 06:01 PM #4
See cross post at: Please how do i extract youtube video id from these links maybe using Regex
- 06-25-2011, 08:37 PM #5
Thanks Norm.
db
- 06-25-2011, 08:45 PM #6
You could check the strings with .contains and depending on which one link you get is how you could cut from the strings. That is if you have a limited number of link variations.
- Use [code][/code] tags when posting code. That way people don't want to stab their eyes out when trying to help you.
- +Rep people for helpful posts.
Similar Threads
-
tomcat embedded youtube video
By crank6015 in forum JavaServer Pages (JSP) and JSTLReplies: 0Last Post: 06-04-2011, 01:30 AM -
Youtube API - retrieve video on user input
By Jman85 in forum New To JavaReplies: 4Last Post: 11-11-2010, 06:15 AM -
youtube Video downloads
By Gloomy in forum New To JavaReplies: 2Last Post: 09-06-2010, 05:40 AM -
embed the video in the html page by youtube api
By javastuden in forum Advanced JavaReplies: 6Last Post: 06-17-2010, 01:23 PM -
download youtube video
By lalit.wientech in forum NetworkingReplies: 11Last Post: 03-24-2010, 04:30 PM


1Likes
LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks