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"

Constants

unicode_to_lowercase constant (unknown)
unicode_to_uppercase constant (unknown)