1
  NSString *myString = @"     New Profile     "

i want to remove the front and end of the White space in my String.

Maulik
  • 19,348
  • 14
  • 82
  • 137
Ramesh
  • 43
  • 12
  • 2
    Always search first then post. This question was asked 2.5 years back. http://stackoverflow.com/questions/3800206/how-to-get-rid-of-heading-and-trailing-white-spaces-from-nsstring – Anoop Vaidya Feb 21 '13 at 07:26
  • BTW, where's your ';' ? – Jab Feb 21 '13 at 07:56

1 Answers1

3

Try this it will also remove blank new lines:

NSString *temp = @" untrimmed string ";
NSString *newString = [temp stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
Maulik
  • 19,348
  • 14
  • 82
  • 137