Created
September 5, 2014 07:09
-
-
Save megascus/bad02e5665ffb20cce5c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
reader.lines().filter(s -> pattern.matcher(s).find()).map(s -> { | |
Matcher matcher = pattern.matcher(s); | |
matcher.find(); | |
DataBean bean = new DataBean(matcher.group()); | |
return bean; | |
}).forEach(s -> { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment