FAQ
 
 
Cover  \ Exhibition  \ Learning  \ Reference  \ Download  \ Discourse   
      Language \ Environment \ Libraries \ Comparison
 
   
   
Back  
   
  Reference for Processing (BETA) version 91+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.  
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  
substring(beginIndex)
substring(beginIndex, endIndex)
   
Parameters  
beginIndex   int: position from which to begin (inclusive)

endIndex   int: position from which to end (exclusive)

   
Returns   String
   
Usage   Web & Application
   
 
 






   
 
Updated: Fri Jul 15 16:36:11 PDT 2005
 
 








Creative Commons License
 
  Processing is an open project initiated by Ben Fry and Casey Reas  
  © Info