Mega Code Archive

 
Categories / Java Tutorial / Swing
 

Delete the first 5 characters

import javax.swing.JTextArea; public class Main {   public static void main(String[] argv) {     JTextArea ta = new JTextArea("Initial Text");     int start = 0;     int end = 5;     ta.replaceRange(null, start, end);   } }