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