RegExpr7.java Source code

Java tutorial

Introduction

Here is the source code for RegExpr7.java

Source

import java.util.regex.Matcher;
import java.util.regex.Pattern;

class RegExpr7 {
    public static void main(String args[]) {
        Pattern pat = Pattern.compile("[a-z]+");
        Matcher mat = pat.matcher("this is a test.");

        while (mat.find())
            System.out.println("Match: " + mat.group());
    }
}