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

📄 e423. quintessential regular expression search program.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
This example demonstrates how to use a regular expression to find matches in a string. 
    import java.util.regex.*;
    
    public class BasicMatch {
        public static void main(String[] args) {
            // Compile regular expression
            String patternStr = "b";
            Pattern pattern = Pattern.compile(patternStr);
    
            // Determine if pattern exists in input
            CharSequence inputStr = "a b c b";
            Matcher matcher = pattern.matcher(inputStr);
            boolean matchFound = matcher.find();    // true
    
            // Get matching string
            String match = matcher.group();         // b
    
            // Get indices of matching string
            int start = matcher.start();            // 2
            int end = matcher.end();                // 3
            // the end is index of the last matching character + 1
    
            // Find the next occurrence
            matchFound = matcher.find();            // true
        }
    }

⌨️ 快捷键说明

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