1
#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 可以根据字节数给出令牌偏移量?

4

0 回答 0