中文字元ASCII碼和NSString相互轉換

來源:互聯網
上載者:User

在xcode中,檔案以utf8格式儲存。因此,其中變數對象也是以utf8格式儲存。不同語言的utf8編碼不一樣,英文的utf8編碼和ascii碼一樣。不同語言的每個字元的utf8編碼的位元組數不一樣,位元組碼也不一樣。對於英文字元,查看它的ascii碼,很方便,將字元取出來,就是它的ascii碼。其實,對於非英文字元,取字元集編碼的方式也是這樣。這樣統稱為取ASCII碼,在很多文檔中也是這樣描述的。網上很多這範例子,介紹如何將字元和ASCII碼相互轉化。但是它們都沒有提及如何轉換中文等其他非英文的字元,使用這個方法都會轉成亂碼。 使用英文轉換測試,如下所示:// NSString to ASCIINSString *string = @"A";int asciiCode = [string characterAtIndex:0]; // 65 // ASCII to NSStringint asciiCode = 65;NSString *string = [NSString stringWithFormat:@"%c", asciiCode]; // A 再使用中文測試一下,使用[NSString stringWithFormat:@"%c", asciiCode]得到的是亂碼字元,就是說根本沒識別正確。再說解決方案之前,先瞭解一下stringWithFormat方法中各種format。其中將ascii碼轉成字元有兩種format,分別為%c和%C。     /*     %c     8-bit unsigned character (unsigned char), printed by NSLog() as an ASCII character, or, if not an ASCII character, in the octal format \\ddd or the Unicode hexadecimal format \\udddd, where d is a digit.     %C     16-bit Unicode character (unichar), printed by NSLog() as an ASCII character, or, if not an ASCII character, in the octal format \\ddd or the Unicode hexadecimal format \\udddd, where d is a digit.     */使用[NSString stringWithFormat:@"%C", asciiCode]就可以正常得到所要的字元。分別以英文,中文和日文舉例。     NSString *theString = @"g";    unichar theChar = [theString characterAtIndex:0];    NSString *theString1 = [NSString stringWithFormat:@"%c", theChar];    NSString *theString2 = [NSString stringWithFormat:@"%C", theChar];    NSLog(@"theString=%@,%d,%@,%@",theString,theChar,theString1,theString2);        theString = @"家";    theChar = [theString characterAtIndex:0];    theString1 = [NSString stringWithFormat:@"%c", theChar];    theString2 = [NSString stringWithFormat:@"%C", theChar];    NSLog(@"theString=%@,%d,%@,%@",theString,theChar,theString1,theString2);        theString = @"カントリー";    theChar = [theString characterAtIndex:2];    theString1 = [NSString stringWithFormat:@"%c", theChar];    theString2 = [NSString stringWithFormat:@"%C", theChar];    NSLog(@"theString=%@,%d,%@,%@",theString,theChar,theString1,theString2); 2013-09-12 15:36:27.849 XYShopping[1892:18e03] theString=g,103,g,g2013-09-12 15:36:27.849 XYShopping[1892:18e03] theString=家,23478,?,家2013-09-12 15:36:27.849 XYShopping[1892:18e03] theString=カントリー,12488,?,ト 顯示結果表明,這個方法是正確的。對於兩個位元組組成的字元,是能顯示出的。不知道其他語言會怎麼樣,沒有條件去測試。 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.