0 purchases
voiced point conversion for jp
voiced_point_conversion_for_jp #
日本語のひらがな、かたかなを濁点や丸が付いたものに変換するライブラリです。例えば「は」を「ば」や「ぱ」に変換します。
使い方 #
String str1 = VoicedPointConv4JP.convertToVoicedPoint('か');
print(str1); // が
String str2 = VoicedPointConv4JP.convertToHalfDullness('は');
print(str2); // ぱ
String str3 = VoicedPointConv4JP.convertToSmallWriting('や');
print(str3); // ゃ
String str4 = VoicedPointConv4JP.convertByToggle4last('はは');
print(str4); // はば
str4 = VoicedPointConv4JP.convertByToggle4last(str4);
print(str4); // はぱ
str4 = VoicedPointConv4JP.convertByToggle4last(str4);
print(str4); // はは
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.