字符串变小写
String toLowerCase(String Str)
功能:将字符串中的所有字母小写
返回值:返回处理完的字符串。
例:
string x="ABCD";
x= toUpperCase(x);
x
的结果为
abcd