String::substring() \ Language (API) \ Processing 1.0
Language (A-Z) \
Libraries \
Tools \
Environment
Reference for Processing version 1.2. If you have a previous version, use the reference included with your software. If you see any errors or have suggestions, please let us know.
If you prefer a more technical reference, visit the Processing Javadoc.
Class
String
Name
substring()
Examples
String str1 = "CCCP";
String str2 = "Rabbit";
String ss1 = str1.substring(2); // Returns "CP"
String ss2 = str2.substring(3); // Returns "bit"
String ss3 = str1.substring(0, 2); // Returns "CC"
println(ss1 + ":" + ss2 + ":" + ss3); // Prints 'CP:bit:CC'
Description
Returns a new string that is a part of the original string. When using the endIndex parameter, the string between beginIndex and endIndex-1 is returned.
Syntax
str.substring(beginIndex)
str.substring(beginIndex, endIndex)
Parameters
str
String: any variable of type String
beginIndex
int: position from which to begin (inclusive)
endIndex
int: position from which to end (exclusive)
Returns
String
Usage
Web & Application
Updated on June 14, 2010 12:05:29pm EDT
Processing was initiated by Ben Fry and Casey Reas. It is developed by a small team of volunteers.
© Info \
Site hosted by Media Temple!
Wyszukiwarka
Podobne podstrony:
String substringString substringString concatString indexOfSTRING (3)stringappendoperatorStrings LWBString equalsStringSeqHolderstrings01strings SPfunction mysql real escape stringSTRINGSStringValueExpStringClasswięcej podobnych podstron