(byte[] src, int begin, int count)
| 221 | } |
| 222 | |
| 223 | public static byte[] subBytes(byte[] src, int begin, int count) { |
| 224 | byte[] bs = new byte[count]; |
| 225 | for (int i=begin; i<begin+count; i++) bs[i-begin] = src[i]; |
| 226 | return bs; |
| 227 | } |
| 228 | |
| 229 | public static String matchByStartEndPosition(String str,String rule){ |
| 230 | int nStart = 0; |
no outgoing calls
no test coverage detected