函数名称:小写字母转大写
函数功能:将所有小写字母转成大写
函数方法
str2 = string.upper(str1)
函数用例
str1 = "just do it" str2 = string.upper(str1) dialog("转换后的大写字母内容:"..str2,5)