17 lines
399 B
Java
17 lines
399 B
Java
|
package com.xkrs.utils;
|
||
|
|
||
|
public class FirePointCodeUtils {
|
||
|
|
||
|
private FirePointCodeUtils() {
|
||
|
}
|
||
|
|
||
|
public static String getCodeNotZeroEnd(String code) throws Exception {
|
||
|
String codeNotZeroEnd = code;
|
||
|
while (codeNotZeroEnd.endsWith("0")) {
|
||
|
codeNotZeroEnd = codeNotZeroEnd.substring(0, codeNotZeroEnd.length() - 1);
|
||
|
}
|
||
|
return codeNotZeroEnd;
|
||
|
}
|
||
|
|
||
|
}
|