Module string/unicode
string/unicode
Unicode-aware case conversion using full case folding rules.
Example
{ unicode_to_lowercase, unicode_to_uppercase } :: import "std/string/unicode";
lower := unicode_to_lowercase(`HELLO WÖRLD`); // "hello wörld"
upper := unicode_to_uppercase(`hello wörld`); // "HELLO WÖRLD"
Functions
unicode_to_lowercase
function
unicode_to_uppercase
function