(String s, int n)
| 69 | // } |
| 70 | |
| 71 | public static String strip(String s, int n) { |
| 72 | return s.substring(n, s.length()-n); |
| 73 | } |
| 74 | |
| 75 | // public static String stripRight(String s, int n) { |
| 76 | // return s.substring(0, s.length()-n); |
no test coverage detected