| 3 | import cn.hutool.core.util.StrUtil; |
| 4 | |
| 5 | public class StringUtil { |
| 6 | |
| 7 | public static void main(String[] args) { |
| 8 | String s = "fffffff3"; |
| 9 | s = s.substring(s.length() - 2); |
| 10 | s = StrUtil.sub(s, s.length() - 2, -2); |
| 11 | System.out.println(s); |
| 12 | } |
| 13 | |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected