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 3164ae3 commit ada8f2dCopy full SHA for ada8f2d
normalization/julia.md
@@ -0,0 +1,14 @@
1
+# Unicode normalization in Julia
2
+
3
+The core `normalize_string` function returns a string in the specified
4
+normalization form.
5
6
+```julia
7
+nfd = normalize_string(str, :NFD)
8
+nfc = normalize_string(str, :NFC)
9
+nfkd = normalize_string(str, :NFKD)
10
+nfkc = normalize_string(str, :NFKC)
11
+```
12
13
+* Requires: Julia 3.0
14
+* Docs: http://julia.readthedocs.org/en/latest/stdlib/base/#Base.normalize_string
0 commit comments