Question

I need to parse url which is actually in KOI8-R encoding and as i've surfed there is no encoding in objective c which allows to do that.

It used to be smth like this NSString* fileText = [NSString stringWithContentsOfURL: [NSURL URLWithString:@"ThePageISurf.com"] encoding: NSCyrrilicKOI8-Rencoding error:nil];

Maybe there is a library/method to convert string to KOI8-R? Or Even URL directly? There is got to be the way....

Was it helpful?

Solution

Try CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingKOI8_R).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top