Mega Code Archive

 
Categories / Java Tutorial / Development
 

Extracting Characters From a Mutable String

public class MainClass {   public static void main(String[] arg) {     StringBuffer phrase = new StringBuffer("one two three four");          System.out.println(phrase.charAt(5));         char[] textArray = new char[3];     phrase.getChars(9, 12, textArray, 0);     for(char ch: textArray){       System.out.println(ch);            }   } } w h r e