131132133134135136137138139140141
Pattern pattern = Pattern.compile("_64_?"); Matcher matcher = pattern.matcher(new String(id)); if ( matcher.find() ) { return new Ascii64Primitive(); } throw new InterpreterException("Cannot find " + id + " function");