All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.plaisance.utils.Strings Maven / Gradle / Ivy

The newest version!
package fr.plaisance.utils;

public abstract class Strings {

	private Strings() {
		// Private constructor
	}

	public static String deleteLastChar(String string) {
		if (string == null || string.length() <= 1) {
			return "";
		}
		return string.substring(0, string.length() - 1);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy