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