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 get the number of processors available to the JVM? - March 29, 2023
- How do I show Spring transaction in log / console? - March 29, 2023
- How do I build simple search page using ZK and Spring Boot? - March 8, 2023