The trim()
method of a String
class removes both leading and trailing white space from a string. In this example we use a regular expression to remove only the leading white spaces from a string.
package org.kodejava.lang;
public class LeadingSpace {
public static void main(String[] args) {
String text = " tattarrattat ";
System.out.println("Original = " + text);
System.out.println("text.length() = " + text.length());
// Using regular expression to remove only the leading white
// space in string
text = text.replaceAll("^\\s+", "");
System.out.println("Result = " + text);
System.out.println("text.length() = " + text.length());
}
}
Original = tattarrattat
text.length() = 22
Result = tattarrattat
text.length() = 17
Latest posts by Wayan (see all)
- How do I create a string of repeated characters? - September 1, 2023
- How do I convert datetime string with optional part to a date object? - August 28, 2023
- How do I split large excel file into multiple smaller files? - April 15, 2023