Skip navigation.
 
mlRe: converting from Big 5 and GuoBiao encodings
FROM : Aki Inoue
DATE : Fri Jan 11 08:08:01 2008

You can get NSStringEncoding IDs for these encodings by converting 
CFStringEncoding.

To get the Mac variant of Big5 (Mac Traditional Chinese), you can do 
CFStringConvertEncodingToNSStringEncoding
(kCFStringEncodingMacChineseTrad).

Refer to http://developer.apple.com/documentation/CoreFoundation/Reference/CFStringRef/Reference/reference.html#/
/apple_ref/c/func/CFStringConvertEncodingToNSStringEncoding

Aki

On 2008/01/10, at 19:22, Daniel Child wrote:

> Hi,
>
> I am trying to build a generic parser for various files I expect to 
> encounter. To get the file in the form of a string, I was going to 
> use:
>
> NSString *fileAsString = [[NSString alloc] initWithContentsOfFile: 
> sourcePath
>                     encoding: NSUTF8StringEncoding
>                     error: &error];
>
> That works assuming the encoidng is UTF8. But what if it is Big 5 or 
> GuoBiao? I couldn't find an equivalent encoding in
> the documentation.
>
> Thanks.
>
> Daniel
>
> _______________________________________________
>
> Cocoa-dev mailing list (<email_removed>)
>
> Please do not post admin requests or moderator comments to the list.
> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
>
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/cocoa-dev/<email_removed>
>
> This email sent to <email_removed>

Related mailsAuthorDate
mlconverting from Big 5 and GuoBiao encodings Daniel Child Jan 11, 04:22
mlRe: converting from Big 5 and GuoBiao encodings Aki Inoue Jan 11, 08:08