1件ヒット
[1-1件を表示]
(0.299秒)
ライブラリ
- ビルトイン (1)
検索結果
-
String
# unicode _ normalize!(form = :nfc) -> self (78304.0) -
self を NFC、NFD、NFKC、NFKD のいずれかの正規化形式で Unicode 正規化し た文字列に置き換えます。
...に発生します。
//emlist[例][ruby]{
text = "a\u0300"
text.unicode_normalize!(:nfc)
text == "\u00E0" # => true
text.unicode_normalize!(:nfd)
text == "a\u0300" # => true
//}
@see String#unicode_normalize, String#unicode_normalized?...