If you try
String _command = "AFTER_2011/03/01 GREATER_2004";
Pattern patt = Pattern.compile("_\\S+");
Matcher matcher = patt.matcher(_command);
while(matcher.find()) {
String name = _command.substring(matcher.start()+1, matcher.end());
System.out.println(name);
}
it prints
2011/03/01
2004
EDIT: As @Alan Moore suggests you can do the following.
String _command = "AFTER_2011/03/01 GREATER_2004";
Pattern patt = Pattern.compile("_(\\S+)");
Matcher matcher = patt.matcher(_command);
while(matcher.find()) {
String name = matcher.group(1);
System.out.println(name);
}