Re: NSString and NSMutableString
Re: NSString and NSMutableString
- Subject: Re: NSString and NSMutableString
- From: Andrew Farmer <email@hidden>
- Date: Sat, 14 Apr 2007 18:33:52 -0700
On 14 Apr 07, at 18:19, Michael Novak wrote:
NSString *beginURL = @"http://www.google.com/search?hl=en&q=";
NSMutableString *searchQuery;
[searchQuery setString:[searchField stringValue]];
//catch the whitespace.
[searchQuery replaceOccurrencesOfString:@" " withString:@"+"
options:2 range:NSMakeRange(0, [searchQuery length])];
NSString *endURL = @"&btnG=Google+Search";
NSString *tempURL = [beginURL stringByAppendingString:searchQuery];
NSString *searchCall = [tempURL stringByAppendingString:endURL];
}
Nat Lanza probably has the crashes figured out, but there's a much
easier way of doing this:
NSString *searchCall = [NSString stringWithFormat:@"http://
www.google.com/search?hl=en&q=%@&btnG=Google+Search", [[searchField
stringValue]
stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
(Code typed in Mail, may or may not work as advertised.)
This has the added benefit of encoding other characters (including
'+' and '&') correctly.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden