Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
367 Bytes
import java.util.regex.*;
public class RegexDemo {
public static void main(String[] args) {
String pattern = "[a-z]+";
String check = "Regular Expressions";
Pattern p = Pattern.compile(pattern);
Matcher c = p.matcher(check);
while (c.find())
System.out.println(check.substring(c.start(), c.end()));
}
}