I make a comparison of two strings which are obviously identical. Unfortunately my if clause doesn´t work as expected:
NSLog(@\"%@ == %@ ?\",strippedString1,
You can't compare two NSStrings with the == operator, instead use
[strippedString1 isEqualToString:strippedString2];