findlast ';' VALUE ';' SEARCHED
Macro
static String _findlast = "${findlast;<find>;<target>}";
public int _findlast(String args[]) throws Exception {
verifyCommand(args, _findlast, null, 3, 3);
return args[2].lastIndexOf(args[1]);
}