vote up 1 vote down star

Using the following doesn't work:

- (NSString *)stringByReplacingOccurrencesOfString:(NSString *)target withString:(NSString *)replacement

By doesn't work I mean does not do any replacement what so ever. It returns the same exact string.

Is there a convenience method to do this? Similar to:

- (NSString *)stringByReplacingPercentEscapesUsingEncoding:(NSStringEncoding)encoding

My code (just one line):

NSString *escapedPath = [pathToBeConverted stringByReplacingOccurrencesOfString:@" " 
                                                                     withString:@"\ "];

Also, my compiler warning. Which likely has much to do with this:

warning: unknown escape sequence: '\040'
flag

What do you mean by "doesn't work"? – Mehrdad Afshari Oct 12 at 21:14
Why doesn't -stringByReplacingOccurrencesOfString:withString: work? – Jim Puls Oct 12 at 21:16
I mean it does no replacement what so ever – Corey Floyd Oct 12 at 21:16
1  
It should work. Show us your code. – Mehrdad Afshari Oct 12 at 21:17
code added. (but just one line) – Corey Floyd Oct 12 at 21:22

1 Answer

vote up 4 vote down check

You should use @"\\ " instead of @"\ ". In C \ is the escape character. You need to escape it with another \.

link|flag
Thanks. that was dumb, I was dumping into an NSAppleScript, which was also escaped and I completely missed it. – Corey Floyd Oct 12 at 21:26
Yes, thanks. It is exactly what I need. I need to get rid of spaces in the file names – Corey Floyd Oct 12 at 21:28
Oh, got it. I was thinking you have a space delimited string and you want to construct a path name with it. – Mehrdad Afshari Oct 12 at 21:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.