Thanigs
Thanigs

Reputation: 73

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

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

Upvotes: 0

Views: 247

Answers (1)

Mihai Nita
Mihai Nita

Reputation: 5787

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/)

Upvotes: 0

Related Questions