OnJava8-Examples/strings/Finding.java
Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

25 lines
661 B
Java

//: strings/Finding.java
// ©2015 MindView LLC: see Copyright.txt
import java.util.regex.*;
import static com.mindviewinc.util.Print.*;
public class Finding {
public static void main(String[] args) {
Matcher m = Pattern.compile("\\w+")
.matcher("Evening is full of the linnet's wings");
while(m.find())
printnb(m.group() + " ");
print();
int i = 0;
while(m.find(i)) {
printnb(m.group() + " ");
i++;
}
}
} /* Output:
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
*///:~