static S findEmailInLine(S s) { Matcher m = Pattern.compile("\\S+@\\S+").matcher(s); ret m.find() ? m.group() : null; }