在icu :: BreakIterator类中是否有任何API以“字节”数给出令牌偏移量?

时间:2015-06-16 09:24:33

标签: c++ unicode icu icu4j

#include <unicode/brkiter.h>

int main( void ) {

    const char* iInput;  
    scanf("Enter the input string: %s", &iInput);  
    BreakIterator* boundary->setText(iInput);
    int32_t iStartOffset = boundary->first();
    int32_t iEndOffset = boundary->next();    ;
    int32_t iStrLength = strlen(iInput);
    printf("iStartOffset: %d, iEndOffset: %d, iStrLength: %d", iStartOffset, iEndOffset, iStrLength);
    return 0;
}

使用上面的API setText()给出了unicode字符数的结果。 BreakIterator类中是否有任何API可以根据字节数给出令牌偏移量?

0 个答案:

没有答案