标签: unicode converter icu iconv
鉴于IANA编解码器名称(或者iconv / ICU中使用的名称之一),确定编解码器是否具有字符的固定宽度表示的最简单方法是什么?
答案 0 :(得分:1)
使用ucnv_isFixedWidth():
ucnv_isFixedWidth()
UErrorCode status; UConverter* converter = ucnv_open("koi8-r", &status); if (U_SUCCESS(status)) { UBool is_fixed = ucnv_isFixedWidth(converter, &status); }