C++ - Determine whether given string has only Furigana Characters

237 Views Asked by At

Is there any existing C++ function to determine given string has only furigana characters?

1

There are 1 best solutions below

0
On

Furigana is about presentation, it does not exist "as is" in plain text (in C++ strings). This is like asking for a C++ function to detect bold characters.

Now, if you say "the string contains HTML tagged text", then you can parse the HTML tags and identify the furigana part. (http://www.w3.org/International/articles/ruby/)