去除字符串后面的0 零 @param data @return
(String data)
| 544 | * @return |
| 545 | */ |
| 546 | public static String getRemoveZeroString(String data) { |
| 547 | return data.replaceAll("0+$", ""); |
| 548 | } |
| 549 | |
| 550 | |
| 551 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected