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

Popular posts from this blog

user interface - Python attempting to create a simple gui, getting "AttributeError: 'MainMenu' object has no attribute 'intro_screen'" -

jquery - Common JavaScript snippet to share files on Google Drive, Dropbox, Box.net or SkyDrive -

Android Gson.fromJson error -