package org.kodejava.lang;
public class TrimStringExample {
public static void main(String[] args) {
String text = " tattarrattat ";
System.out.println("Original = " + text);
System.out.println("text.length() = " + text.length());
// The trim() method will result a new string object with a leading and
// trailing while space removed.
text = text.trim();
System.out.println("Result = " + text);
System.out.println("text.length() = " + text.length());
}
}
The result of the code snippet above:
Original = tattarrattat
text.length() = 22
Result = tattarrattat
text.length() = 12
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