I have a NSString:

NSString *string1 = @"http://example.com/this-is-an-example-post"

By removing a range of characteres I have substringed it to:

NSString *string2 = @"this-is-an-example-post"

But I am struggling to get it into the form of:

NSString *string3 = @"this is an example post"

Any help? Much appreciated.

有帮助吗?

解决方案

For example this way

string3 = [string2 stringByReplacingOccurrencesOfString:@"-" withString:@" "];
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top