I am getting data from server and lot unexpected spaces between the words. like below
NSString* str = @"This is Test Result ".
The extras must be remove like there must be only one space between This
and is
.
If we use the below only leading
and trailing
spaces will be removed, but I need different
NSString *trimmedString = [str stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];