I am trying to remove from an NSString
link , some characters that are not letters, that may appear at the start and and the end. Is there a simple, but safe way to do that ?
example :
NSString *link= @" www.something.com. " //removing the `.`
NSString *link= @" [www.something.com] " //removing the `[ ]`
NSString *link= @" www.something.com/ " //removing the `/`
Thanks a lot.