| 
		
			
			
				
			
			
				 
			
			
				
			
		 | 
		
			
			
				 
			
				
			
		 | 
	||||
| 
				Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.  You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us.  | 
		
		 
		![]()  | 
	
		
			
  | 	
	
	
		
		|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. | 
| 
		 | 
	Thread Tools | 
| 
			
			 | 
		#1 | 
| 
			
			
			
			 Too lazy to set a custom title 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Aug 2002 
				
				
				
					Posts: 55,372
				 
				
				
				
				 | 
	
	
	
	
		
			
			 
				
				python and ruby folk in here
			 
			im putting together a collection of youtube one liners. 
		
	
		
		
		
		
			anyone wanna submit one that works from console to get a youtube video id out of a youtube url? ;) 
				__________________ 
		
		
		
		
	
	Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence. ![]() WP Stuff  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#2 | 
| 
			
			
			
			 Confirmed User 
			
		
			
			
			Industry Role:  
				Join Date: Oct 2002 
				Location: lalaland 
				
				
					Posts: 2,120
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 do you mean "uAFjgpuWREM" from https://youtube.com/watch?v=uAFjg...6cFAAAAAAAAAAA or what? 
		
	
		
		
		
		
			
		
		
		
		
	
	 | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#3 | 
| 
			
			
			
			 Too lazy to set a custom title 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Aug 2002 
				
				
				
					Posts: 55,372
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 ya exactly 
		
	
		
		
		
		
			perl Code: 
	perl -e '$_=shift; print(/v=(.+)/);' https://youtube.com/watch?v=8tRUckf0WbY Code: 
	echo https://youtube.com/watch?v=4bQOSRm9YiQ | awk -F 'v=' '{print $2}'
Code: 
	echo https://youtube.com/watch?v=sGgOM1UsqtE | sed 's/.*watch?v=\([^&]*\).*/\1/'
echo https://youtube.com/watch?v=sGgOM1UsqtE | grep -o 'watch\?v=[^&"]+' | sed -e 's#^[^=]*=##'
echo https://youtube.com/watch?v=sGgOM1UsqtE | sed -ne 's#^.*watch?v=\([^&"]*\+\).*$#\1#p'
echo https://youtube.com/watch?v=sGgOM1UsqtE | sed '/watch?v=/! d;s/.*v=//;s/\(.\{11\}\).*/\1/'
				__________________ 
		
		
		
		
	
	Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence. ![]() WP Stuff  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#4 | 
| 
			
			
			
			 Beer Money Baron 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Jan 2001 
				Location: brujah / gmail 
				
				
					Posts: 22,157
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 No php?   
		
	
		
		
		
		
			Code: 
	php -r 'echo next(explode( "v=", $argv[1] ) );' https://youtube.com/watch?v=8tRUckf0WbY Code: 
	php -r 'echo preg_replace ( "/.*v\=([a-z0-9]+).*/i", "$1", $argv[1] );' https://youtube.com/watch?v=8tRUckf0WbY 
				__________________ 
		
		
		
		
	
	
  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#5 | 
| 
			
			
			
			 Beer Money Baron 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Jan 2001 
				Location: brujah / gmail 
				
				
					Posts: 22,157
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 here's a ruby sample: 
		
	
		
		
		
		
			Code: 
	echo 'https://youtube.com/watch?v=8tRUckf0WbY' | ruby -ne 'puts $1 if /v=(\w+)/' 
				__________________ 
		
		
		
		
	
	
  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#7 | 
| 
			
			
			
			 Beer Money Baron 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Jan 2001 
				Location: brujah / gmail 
				
				
					Posts: 22,157
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 I don't normally use python, but since no one else is bothering... 
		
	
		
		
		
		
			Code: 
	python -c "import re,sys; m = re.split('v=',sys.argv[1]); print m[1];" https://youtube.com/watch?v=8tRUckf0WbY
				__________________ 
		
		
		
		
	
	
  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#9 | 
| 
			
			
			
			 Too lazy to set a custom title 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Aug 2002 
				
				
				
					Posts: 55,372
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 here is some bash ;) 
		
	
		
		
		
		
			Code: 
	echo https://youtube.com/watch?v=sGgOM1UsqtE | grep -E 'v=[A-Za-z0-9_-]' | cut -d "=" -f 2 Code: 
	var='https://youtube.com/watch?v=sGgOM1UsqtE'; echo "${var#*v=}"
Code: 
	var='https://youtube.com/watch?v=sGgOM1UsqtE'; echo "${var##*[?&]v=}"
				__________________ 
		
		
		
		
	
	Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence. ![]() WP Stuff  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#10 | 
| 
			
			
			
			 Too lazy to set a custom title 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Aug 2002 
				
				
				
					Posts: 55,372
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 zsh ;) 
		
	
		
		
		
		
			Code: 
	s='https://youtube.com/watch?v=k6R9hMV1jNk'; a=("${(s/v=/)s}"); echo $a[2]
				__________________ 
		
		
		
		
	
	Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence. ![]() WP Stuff  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#11 | 
| 
			
			
			
			 Confirmed User 
			
		
			
				
			
			
			Join Date: Feb 2007 
				Location: Sweden 
				
				
					Posts: 5,650
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 Qbasic??? 
		
	
		
		
		
		
			
				__________________ 
		
		
		
		
	
	Free 🅑🅘🅣🅒🅞🅘🅝🅢 Every Hour (Yes, really. Free ₿itCoins.) (Signup with ONLY your Email and Password. You can also refer people and get even more.)  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#12 | 
| 
			
			
			
			 Beer Money Baron 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Jan 2001 
				Location: brujah / gmail 
				
				
					Posts: 22,157
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		
		
	
		
		
		
		
			 
				__________________ 
		
		
		
		
	
	
  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 |