vote up 1 vote down star

I'm a little confused between a unichar and a char. Can I treat unichar's similar to char's?

For example, can I do this:

-(BOOL)isNewLine:(unichar)c {

if(c == '\n')
  return YES;
else
  return NO;

}
flag

2 Answers

vote up 1 vote down check

Yes, unichar is internally unsigned short, so you can meaningfully compare it with a char (if the latter is ASCII, but that works fine for '\n').

link|flag
vote up 0 vote down

Be careful checking for newline that you know the format of your line endings, as Unix (and modern Mac) use \n, but Windows uses \r\n and classic Mac uses \r.

link|flag
Thanks. I've found a class, NSCharacterSet, that has a static method to produce NSNewlineCharacterSet which I can compare against. – LeeMobile Jul 8 at 17:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.