Java examples for java.lang:String Trim
trim String from Ends
//package com.java2s; public class Main { public static void main(String[] argv) { String sourceString = "java2s.com"; System.out.println(trimEnds(sourceString)); }//from w w w. jav a 2 s. c om public static String trimEnds(String sourceString) { return trimLeft(trimRight(sourceString)); } public static String trimEnds(String sourceString, String trimChars) { return trimLeft(trimRight(sourceString, trimChars), trimChars); } public static String trimEnds(String sourceString, char removeChar) { return trimRight(trimLeft(sourceString, removeChar), removeChar); } public static String trimLeft(String sourceString) { String result = ""; if (!isEmpty(sourceString)) { StringBuilder buffer = new StringBuilder(sourceString); int length = buffer.length(); while ((length != 0) && (Character.isWhitespace(buffer.charAt(0)))) { buffer.deleteCharAt(0); length--; } result = buffer.toString(); } return result; } public static String trimLeft(String sourceString, char removeChar) { String result = ""; if (!isEmpty(sourceString)) { StringBuilder buffer = new StringBuilder(sourceString); while ((buffer.length() > 0) && buffer.charAt(0) == removeChar) { buffer.deleteCharAt(0); } result = buffer.toString(); } return result; } public static String trimLeft(String sourceString, String removeChars) { String result = ""; int length = removeChars.length(); if (!isEmpty(sourceString)) { StringBuilder buffer = new StringBuilder(sourceString); boolean done = false; while ((buffer.length() > 0) && !done) { done = true; for (int i = 0; i < length; i++) { if (buffer.charAt(0) == removeChars.charAt(i)) { buffer.deleteCharAt(0); done = false; break; } } } result = buffer.toString(); } return result; } public static String trimRight(String sourceString, String listOfCharsToRemove) { String result = ""; int length = listOfCharsToRemove.length(); if (!isEmpty(sourceString)) { StringBuilder buffer = new StringBuilder(sourceString); boolean done = false; while ((buffer.length() > 0) && !done) { int offset = buffer.length() - 1; done = true; for (int i = 0; i < length; i++) { if (buffer.charAt(offset) == listOfCharsToRemove .charAt(i)) { buffer.deleteCharAt(offset); done = false; break; } } } result = buffer.toString(); } return result; } public static String trimRight(String sourceString) { String result = ""; if (!isEmpty(sourceString)) { StringBuilder buffer = new StringBuilder(sourceString); int pos = buffer.length() - 1; while ((pos >= 0) && Character.isWhitespace(buffer.charAt(pos))) { buffer.deleteCharAt(pos--); } result = buffer.toString(); } return result; } public static String trimRight(String sourceString, char removeChar) { String result = ""; if (!isEmpty(sourceString)) { StringBuilder buffer = new StringBuilder(sourceString); int length = buffer.length(); while ((length > 0) && buffer.charAt(length - 1) == removeChar) { buffer.deleteCharAt(length - 1); length = buffer.length(); } result = buffer.toString(); } return result; } public static boolean isEmpty(String str) { return (str == null || str.length() == 0); } public static int length(String source) { int result = 0; if (isNotEmpty(source)) { result = source.length(); } return result; } public static boolean isNotEmpty(String str) { return !isEmpty(str); } }