How do I remove substring from StringBuilder?
Category: java.lang, viewed: 12155 time(s).
This example demonstrate you how to use the StringBuilder delete(int start, int end) and deleteCharAt(int index) to remove a substring or a single character from a StringBuilder.
package org.kodejava.example.lang;
public class StringBuilderDelete {
public static void main(String[] args) {
StringBuilder lipsum = new StringBuilder("Lorem ipsum dolor sit amet, " +
"consectetur adipisicing elit.");
System.out.println("lipsum = " + lipsum.toString());
//
// We'll remove a substring from this StringBuilder starting from the
// first character to the 28th character.
//
lipsum.delete(0, 28);
System.out.println("lipsum = " + lipsum.toString());
//
// Removes a char from the StringBuilder. In the example below we remove
// the last character.
//
lipsum.deleteCharAt(lipsum.length() - 1);
System.out.println("lipsum = " + lipsum.toString());
}
}
Download Hundreds of Complimentary Industry Resources
Get hundreds of popular Industry magazines, white papers, webinars, podcasts, and more;
all available at no cost to you. With more than 600 complimentary offers, you'll find
plenty of titles to suit your professional interests and needs.
Click Here and Sign up today!