Processing, 类String
中的substring()
用法介绍。
用法
str.substring(beginIndex)
str.substring(beginIndex, endIndex)
参数
str
字符串:任何字符串类型的变量beginIndex
int:开始的位置(包括)endIndex
int:结束的位置(不包括)
返回
String
说明
返回一个新字符串,它是原始字符串的一部分。使用endIndex
参数时,返回beginIndex
和endIndex
-1 之间的字符串。
例子
String str1 = "CCCP";
String str2 = "Rabbit";
String ss1 = str1.substring(2); // Returns "CP"
String ss2 = str2.substring(3); // Returns "bit"
String ss3 = str2.substring(0, 2); // Returns "Ra"
println(ss1 + ":" + ss2 + ":" + ss3); // Prints "CP:bit:Ra"
相关用法
- Processing String.equals()用法及代码示例
- Processing String.toUpperCase()用法及代码示例
- Processing String.toLowerCase()用法及代码示例
- 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.substring()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。