e429. quintessential regular expression search and replace program.txt

来自「这里面包含了一百多个JAVA源文件」· 文本 代码 · 共 22 行

TXT
22
字号
This program finds all matches to a regular expression pattern and replaces them with another string. 
If the replacement is not a constant string, see e430 Searching and Replacing with Nonconstant Values Using a Regular Expression. 

    import java.util.regex.*;
    
    public class BasicReplace {
        public static void main(String[] args) {
            CharSequence inputStr = "a b c a b c";
            String patternStr = "a";
            String replacementStr = "x";
    
            // Compile regular expression
            Pattern pattern = Pattern.compile(patternStr);
    
            // Replace all occurrences of pattern in input
            Matcher matcher = pattern.matcher(inputStr);
            String output = matcher.replaceAll(replacementStr);
            // x b c x b c
        }
    }

⌨️ 快捷键说明

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