Swift3.0 で ひらがな <-> カタカナ 変換する
Swift3 で動くコードがなかったので。
Stringクラスにひらがな・カタカナ変換をextensionする を Swift3 でいけるようにしただけです。
extension
extension String {
func toKatakana() -> String {
var str = ""
for c in unicodeScalars {
if c.value >= 0x3041 && c.value <= 0x3096 {
str += String(describing: UnicodeScalar(c.value + 96)!)
} else {
str += String(c)
}
}
return str
}
func toHiragana() -> String {
var str = ""
for c in unicodeScalars {
if c.value >= 0x30A1 && c.value <= 0x30F6 {
str += String(describing: UnicodeScalar(c.value - 96)!)
} else {
str += String(c)
}
}
return str
}
}
参考
Author And Source
この問題について(Swift3.0 で ひらがな <-> カタカナ 変換する), 我々は、より多くの情報をここで見つけました https://qiita.com/star__hoshi/items/5104d9ce5d07873e851d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .