OnJava8-Examples/strings/Finding.java

28 lines
773 B
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// strings/Finding.java
2016-12-30 17:23:13 -08:00
// (c)2017 MindView LLC: see Copyright.txt
2015-11-15 15:51:35 -08:00
// We make no guarantees that this code is fit for any purpose.
2016-09-23 13:23:35 -06:00
// Visit http://OnJava8.com for more book information.
2015-06-15 17:47:35 -07:00
import java.util.regex.*;
public class Finding {
public static void main(String[] args) {
Matcher m = Pattern.compile("\\w+")
2017-01-20 21:30:44 -08:00
.matcher(
"Evening is full of the linnet's wings");
2015-06-15 17:47:35 -07:00
while(m.find())
2015-11-03 12:00:44 -08:00
System.out.print(m.group() + " ");
System.out.println();
2015-06-15 17:47:35 -07:00
int i = 0;
while(m.find(i)) {
2015-11-03 12:00:44 -08:00
System.out.print(m.group() + " ");
2015-06-15 17:47:35 -07:00
i++;
}
}
2015-09-07 11:44:36 -06:00
}
/* Output:
2015-06-15 17:47:35 -07:00
Evening is full of the linnet s wings
Evening vening ening ning ing ng g is is s full full ull ll
l of of f the the he e linnet linnet innet nnet net et t s
s wings wings ings ngs gs s
2015-09-07 11:44:36 -06:00
*/