Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

public class Main {
    public static void main(String[] argv) throws Exception {
        Pattern word = Pattern.compile("\\G\\w+");

        Matcher mat = word.matcher("this is a test 999");
        System.out.println(mat.find());

    }
}
//true