(byte[] src, int begin, int count)
| 82 | } |
| 83 | |
| 84 | public static byte[] subBytes(byte[] src, int begin, int count) { |
| 85 | byte[] bs = new byte[count]; |
| 86 | for (int i=begin; i<begin+count; i++) bs[i-begin] = src[i]; |
| 87 | return bs; |
| 88 | } |
| 89 | |
| 90 | public static String matchByStartEndPosition(String str,String rule){ |
| 91 | int nStart = 0; |
no outgoing calls
no test coverage detected