Pregunta

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.

¿Fue útil?

Solución

For example this way

string3 = [string2 stringByReplacingOccurrencesOfString:@"-" withString:@" "];
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top