utf8Strup

fun utf8Strup(str: String, len: Long): String

Converts all Unicode characters in the string that have a case to uppercase. The exact manner that this is done depends on the current locale, and may result in the number of characters in the string increasing. (For instance, the German ess-zet will be changed to SS.)

Return

a newly allocated string, with all characters converted to uppercase.

Parameters

str

a UTF-8 encoded string

len

length of @str, in bytes, or -1 if @str is nul-terminated.