I want one sentence in NSString
object like this:
NSString *myWords = @"Hi,I'm Janatan! I love objective C!!!";
I want split this sentence to more part for example :
first part : Hi
second part : I'm Janatan
third part : I love objective C
I want do this with loop but I don't know how to do it. I want split words until arrive to signs (! , ? . and etc)
please guide me about that.