Processing, 类String
中的toUpperCase()
用法介绍。
用法
str.toUpperCase()
参数
str
字符串:任何字符串类型的变量
返回
String
说明
将字符串中的所有字符转换为大写。例如,"abc" 将转换为 "ABC"。
例子
String str1 = "Cccp";
String str2 = "Rabbit";
str1 = str1.toUpperCase();
str2 = str2.toUpperCase();
println(str1 + ":" + str2); // Prints "CCCP:RABBIT"
相关用法
- Processing String.toLowerCase()用法及代码示例
- Processing String.equals()用法及代码示例
- Processing String.substring()用法及代码示例
- Processing String.length()用法及代码示例
- Processing String.charAt()用法及代码示例
- Processing String.indexOf()用法及代码示例
- Processing String用法及代码示例
- Processing StringList用法及代码示例
- Processing StringList.remove()用法及代码示例
- Processing StringDict用法及代码示例
- Processing StringDict.keys()用法及代码示例
- Processing StringDict.size()用法及代码示例
- Processing StringDict.hasKey()用法及代码示例
- Processing StringDict.sortValuesReverse()用法及代码示例
- Processing StringList.clear()用法及代码示例
- Processing StringList.set()用法及代码示例
- Processing StringList.get()用法及代码示例
- Processing StringList.upper()用法及代码示例
- Processing StringList.sortReverse()用法及代码示例
- Processing StringDict.clear()用法及代码示例
- Processing StringList.size()用法及代码示例
- Processing StringDict.values()用法及代码示例
- Processing StringDict.sortKeys()用法及代码示例
- Processing StringDict.remove()用法及代码示例
- Processing StringDict.keyArray()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 String.toUpperCase()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。