Thai word segmentation. More...
Functions | |
| int | th_brk (const thchar_t *s, int pos[], size_t n) |
| Find word break positions in Thai string. | |
| int | th_brk_line (const thchar_t *in, thchar_t *out, size_t n, const char *delim) |
| Insert word delimitors in given string. | |
Thai word segmentation.
thbrk.h - Thai word segmentation Created: 2001-05-17
| int th_brk | ( | const thchar_t * | s, | |
| int | pos[], | |||
| size_t | n | |||
| ) |
Find word break positions in Thai string.
| s | : the input string to be processed | |
| pos | : array to keep breaking positions | |
| n | : size of pos[] |
Finds word break positions in Thai string s and stores at most n breaking positions in pos[], from left to right.
Insert word delimitors in given string.
| in | : the input string to be processed | |
| out | : the output buffer | |
| n | : the size of out | |
| delim | : the word delimitor to insert |
Analyzes the input string and store the string in output buffer with the given word delimitor inserted at every word boundary.
1.6.1