标签:start lin ring print hat main sys line pre
Java program that trims starts and ends
public class Program {
public static String trimEnd(String value) {
// Use replaceFirst to remove trailing spaces.
return value.replaceFirst("\\s+$", "");
}
public static String trimStart(String value) {
// Remove leading spaces.
return value.replaceFirst("^\\s+", "");
}
public static void main(String[] args) {
String value = " /Test? ";
// Use custom trimEnd and trimStart methods.
System.out.println("[" + trimEnd(value) + "]");
System.out.println("[" + trimStart(value) + "]");
}
}标签:start lin ring print hat main sys line pre
原文地址:https://www.cnblogs.com/kakaisgood/p/8946597.html