Skip to content

Commit ada8f2d

Browse files
committed
add Julia normalization
1 parent 3164ae3 commit ada8f2d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

normalization/julia.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)