使用此函数,您可以强制字符串仅包含小写字符。
注意 此函数仅检测 A-Z 中的 26 个英文字母。
string_lower(string);
String
str1 = "Hello World";str2 = string_lower(str1);
上述代码将 str2 设置为“hello world”。