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

com.viae.maven.sonar.utils.SpecialCharacterUtil Maven / Gradle / Ivy

The newest version!
package com.viae.maven.sonar.utils;

import java.util.Optional;

/**
 * @author by Maarten on 25/09/2016.
 */
public class SpecialCharacterUtil {

	public static String makeStringFreeOfSpecialCharacters( final String value ) {
		return Optional.ofNullable( value ).orElse( "" ).replace( "/", "-" );
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy