tolower STRING
Macro
static String _tolower = "${tolower;<target>}";
public String _tolower(String args[]) throws Exception {
verifyCommand(args, _tolower, null, 2, 2);
return args[1].toLowerCase();
}