My string text is Like -
1) .....bla ..bla...
2)...bla.. bla…bla.
3).bla.. bla…bla.
dots are not static.I want to remove dots only from starting. not All dots
I have tried with this
NSString *newString = [myString stringByReplacingOccurrencesOfString:@"." withString:@""];
but this is removing all dots.