Characters that need to be escaped in an Objective-C NSString object -
want know whole character set characters have escaped in objective-c nsstring object in order recognized properly, e.g. " has escaped \", in
nsstring *temporarystring = @"that book dubbed \"the little book\"."; is character set same 1 in c language char * string?
thanks :d
the characters have escaped " (double-quote) , \ (backslash) characters.
there other special character literals such \n have special meaning separate issue.
objective-c nsstring values use same set of special character literals c.
Comments
Post a Comment