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

com.greenpepper.util.NumberUtil Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
package com.greenpepper.util;

/**
 * 

NumberUtil class.

* * @author oaouattara * @version $Id: $Id */ public final class NumberUtil { private NumberUtil() { } /** *

substituteDecimalSeparatorToPeriod.

* * @param value a {@link java.lang.String} object. * @return a {@link java.lang.String} object. */ public static String substituteDecimalSeparatorToPeriod(String value) { if (StringUtil.isBlank(value)) { return value; } int commaPosition = value.lastIndexOf(','); if (commaPosition == -1) { return value; } return value.substring(0, commaPosition) + "." + value.substring(commaPosition + 1); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy