Created
May 12, 2012 16:27
-
-
Save colinta/2667452 to your computer and use it in GitHub Desktop.
urls
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NSString *text = @"You are one chromosome away from being a potato."; | |
// escape spaces and such | |
text = [text stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; | |
NSString *urlString = [NSString stringWithFormat:@"http://www.translate.google.com/translate_tts?tl=en&q=%@",text]; | |
NSURL *url = [NSURL URLWithString:urlString]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
text = "You are one chromosome away from being a potato." | |
# escape spaces and such | |
text = text.stringByAddingPercentEscapesUsingEncoding(NSUTF8StringEncoding) | |
puts text | |
url_string = "http://www.translate.google.com/translate_tts?tl=en&q=#{text}" | |
puts url_string | |
url = NSURL.URLWithString(url_string) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment