0
我有類似「062A0633062A0020」的字符串,我想將它轉換爲合適的波斯語字符串。我該怎麼做? (Unicode的對伊朗的系統編碼)將字節數組轉換爲波斯字符串
我有類似「062A0633062A0020」的字符串,我想將它轉換爲合適的波斯語字符串。我該怎麼做? (Unicode的對伊朗的系統編碼)將字節數組轉換爲波斯字符串
可以使用的.Net Frameowrk庫(System.Text):
public static byte[] StringToByteArray(string hex)
{
return Enumerable.Range(0, hex.Length)
.Where(x => x % 2 == 0)
.Select(x => Convert.ToByte(hex.Substring(x, 2), 16))
.ToArray();
}
byte[] a = StringToByteArray("062A0633062A0020");
char[] c = System.Text.Encoding.BigEndianUnicode.GetChars(a); // تست