public static void main(String[] args) {
String exp = "em 05/11 as 12h39. DROGAL DOIS CORREGOS";
String regex=".*\\.(.*)";
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(exp);
matcher.matches();
System.out.println(matcher.group(1).trim());
}