⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 regextestharness2v4.java

📁 Regular Expressions of Java Tutorial
💻 JAVA
字号:
import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;

public class RegexTestHarness2V4 {

    public static void main(String[] args) throws IOException {
        Pattern pattern = null;
        Matcher matcher = null;
        BufferedReader br  = new BufferedReader(
                new InputStreamReader(new BufferedInputStream(System.in))
            );
        while (true) {
            try {
                System.out.print("\nEnter your regex: ");
                pattern = Pattern.compile(br.readLine());
                System.out.print("Enter input string to search: ");
                matcher = pattern.matcher(br.readLine());
            } catch (PatternSyntaxException pse) {                
                System.out.println("There is a problem with the regular expression!");
                System.out.println("The pattern in question is: " + pse.getPattern());
                System.out.println("The description is: " + pse.getDescription());
                System.out.println("The message is: " + pse.getMessage());
                System.out.println("The index is: " + pse.getIndex());
                System.exit(0);
            }
            boolean found = false;
            while (matcher.find()) {
                System.out.println("I found the text \"" + matcher.group() + 
                        "\" starting at index " + matcher.start() + 
                        " and ending at index " + matcher.end() + 
                        ".");
                found = true;
            }
            if (!found) {
                System.out.println("No match found.");
            }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -