0

I have a large excel spreadsheet of Japanese words that have their phonetics shown as per example screenshot below - look at column B. The phonetic characters are the tiny characters above the Chinese characters.

I'm familiar with parsing CSV files in Xcode but when I save this spreadsheet as a CSV I lose the phonetic characters. Does anyone know a way I can get the excel file into a format that retains the phonetic characters and that I can still parse in Xcode?

enter image description here

4

1 に答える 1

0

Excel では、プレーン テキスト形式でのふりがな/ルビ/ふりがなのエクスポートはサポートされていません。

(1)PHONETIC関数を使用してテキストを別の列(すでに持っているようです)に抽出してその列を使用するか、(2)ファイルをHTMLにエクスポートしてそれを解析する必要があります(Excelは<ruby><rp><rt>要素を含むテキスト)。

于 2013-04-15T06:24:04.020 に答える