I would like to add a spacing between two words if its already not there:
//Sample 1
NSString *word1 = @"First";
NSString *word2 = @"Word";
NSString *output = [NSString stringWithFormat:@"%@%@", word1, word2];
//output = FirstWord --> I want "First Word"
If there is already a space "First " then it should not add another one.