FAQ
 
 
Cover  \ Exhibition  \ Learning  \ Reference  \ Download  \ Discourse   
      Language \ Environment \ Libraries \ Comparison
 
   
   
Abridged (A-Z) \ Complete (A-Z)  
   
  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.  
Name  

append()

   
Examples  
String sa1[] = { "OH ", "NY ", "CA "}; 
String sa2[] = append(sa1, "MA "); 
print(sa2);  // Prints "OH NY CA MA" 

Description   Expands an array by one element and adds data to the new position. The datatype of the element parameter must be the same as the datatype of the array.
   
Syntax  
append(array, element)
   
Parameters  
array   boolean[], byte[], char[], int[], float[], or String[]

element   new data for the array

   
Returns   Array (the same datatype as the input)
   
Usage   Web & Application
   
Related   shorten()
expand()
 
 






   
 
Updated: Fri Jul 15 16:35:29 PDT 2005
 
 








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