سؤال

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