Java正则表达式Pattern类怎么用

58次阅读
没有评论

共计 912 个字符,预计需要花费 3 分钟才能阅读完成。

Pattern 类是 Java 中用于创建正则表达式模式的类。下面是 Pattern 类的一些常用方法:

  1. compile(String regex):将给定的正则表达式编译成 Pattern 对象。
Pattern pattern = Pattern.compile("[0-9]+");
  1. matcher(CharSequence input):创建一个 Matcher 对象,用于对输入字符串进行匹配。
Matcher matcher = pattern.matcher("12345");
  1. matches():尝试将整个输入序列与模式进行匹配。
boolean result = matcher.matches();
  1. find():尝试在输入序列中查找下一个匹配的子序列。
boolean result = matcher.find();
  1. group():返回上一个匹配操作的匹配结果。
String result = matcher.group();
  1. start():返回上一个匹配操作的匹配结果的起始位置。
int start = matcher.start();
  1. end():返回上一个匹配操作的匹配结果的结束位置。
int end = matcher.end();

下面是一个示例,演示如何使用 Pattern 类进行正则表达式匹配:

import java.util.regex.*;

public class RegexExample {public static void main(String[] args) {String input = "Hello, 12345";
        Pattern pattern = Pattern.compile("[0-9]+");
        Matcher matcher = pattern.matcher(input);
        
        if (matcher.find()) {String result = matcher.group();
            System.out.println("Found: " + result);
        } else {System.out.println("No match found.");
        }
    }
}

运行上述代码,输出为:

Found: 12345

这说明在输入字符串中找到了匹配正则表达式的子序列“12345”。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-09发表,共计912字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)