如何确定编解码器是否具有const比率'每个字符的字节数'?

时间:2015-10-02 23:08:06

标签: unicode converter icu iconv

鉴于IANA编解码器名称(或者iconv / ICU中使用的名称之一),确定编解码器是否具有字符的固定宽度表示的最简单方法是什么?

1 个答案:

答案 0 :(得分:1)

使用ucnv_isFixedWidth()

UErrorCode status;
UConverter* converter = ucnv_open("koi8-r", &status);
if (U_SUCCESS(status)) {
  UBool is_fixed = ucnv_isFixedWidth(converter, &status);
}