Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

public class Main {
    public static void main(String[] asd) {
        String sourcestring = "source string to match with pattern";
        Pattern re = Pattern.compile("[^ABC\\s+]");
        Matcher m = re.matcher(sourcestring);
        int mIdx = 0;
        while (m.find()) {
            for (int groupIdx = 0; groupIdx < m.groupCount() + 1; groupIdx++) {
                System.out.println("[" + mIdx + "][" + groupIdx + "] = " + m.group(groupIdx));
            }
            mIdx++;
        }
    }
}