函数名称:小写字母转大写
函数功能:将所有小写字母转成大写
函数方法
str2 = string.upper(str1)
必填
选填
无
返回值
函数用例
str1 = "just do it" str2 = string.upper(str1) nLog("转换后的大写字母内容:"..str2)