We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d39b1c commit ff2fb40Copy full SHA for ff2fb40
README.md
@@ -52,6 +52,7 @@ free to add or improve examples and new languages.
52
[Python](normalization/python.md),
53
[R](normalization/r.md),
54
[Ruby](normalization/ruby.md)
55
+ [Tcl](normalization/tcl.md)
56
57
7. **Letter casing**
58
normalization/tcl.md
@@ -0,0 +1,13 @@
1
+# Unicode normalization in Tcl
2
+
3
+Unicode normalization is available in the tcllib package
4
+[unicode](http://tcllib.sourceforge.net/doc/unicode.html).
5
6
+```tcl
7
+package require unicode
8
9
+set nfd [::unicode::normalizeS D $str]
10
+set nfc [::unicode::normalizeS C $str]
11
+set nfkd [::unicode::normalizeS KD $str]
12
+set nfkc [::unicode::normalizeS KC $str]
13
+```
0 commit comments