Remove trailing white space from a string : String Operation « Regular Expressions « Java
- Java
- Regular Expressions
- String Operation
Remove trailing white space from a string
public class Main {
public static void main(String[] args) {
String text = " a ";
text = text.replaceAll("\\s+$", "");
System.out.println("Text: " + text);
}
}
Related examples in the same category