亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

Java正則表達式的基本用法和實例大全

小云
105
2023-08-11 13:55:06
欄目: 編程語言

正則表達式是一種用來匹配字符序列的模式,用于檢索、替換和分割字符串。在Java中,可以使用java.util.regex包下的Pattern和Matcher類來進行正則表達式的使用。

下面是一些常用的Java正則表達式的基本用法和實例:

  1. 匹配數字:
  • 表達式:\d+

  • 示例:

String text = "abc123def";
Pattern pattern = Pattern.compile("\\d+");
Matcher matcher = pattern.matcher(text);
while (matcher.find()) {
System.out.println(matcher.group());
}
// 輸出:123
  1. 匹配字母:
  • 表達式:[a-zA-Z]+

  • 示例:

String text = "abc123def";
Pattern pattern = Pattern.compile("[a-zA-Z]+");
Matcher matcher = pattern.matcher(text);
while (matcher.find()) {
System.out.println(matcher.group());
}
// 輸出:abc, def
  1. 匹配特定的字符:
  • 表達式:\w

  • 示例:

String text = "abc123def";
Pattern pattern = Pattern.compile("\\w");
Matcher matcher = pattern.matcher(text);
while (matcher.find()) {
System.out.println(matcher.group());
}
// 輸出:a, b, c, 1, 2, 3, d, e, f
  1. 匹配郵箱:
  • 表達式:\w+@\w+.\w+

  • 示例:

String text = "abc@example.com";
Pattern pattern = Pattern.compile("\\w+@\\w+\\.\\w+");
Matcher matcher = pattern.matcher(text);
while (matcher.find()) {
System.out.println(matcher.group());
}
// 輸出:abc@example.com
  1. 匹配中文:
  • 表達式:[\u4e00-\u9fa5]+

  • 示例:

String text = "你好,世界!";
Pattern pattern = Pattern.compile("[\\u4e00-\\u9fa5]+");
Matcher matcher = pattern.matcher(text);
while (matcher.find()) {
System.out.println(matcher.group());
}
// 輸出:你好,世界!
  1. 替換字符串:
  • 示例:
String text = "abc123def";
Pattern pattern = Pattern.compile("\\d+");
Matcher matcher = pattern.matcher(text);
String result = matcher.replaceAll("X");
System.out.println(result);
// 輸出:abcXdef
  1. 分割字符串:
  • 示例:
String text = "a,b,c";
String[] parts = text.split(",");
for (String part : parts) {
System.out.println(part);
}
// 輸出:a, b, c

以上是一些常用的Java正則表達式的基本用法和實例,可以根據實際需求進行相應的調整和擴展。

0
连城县| 德江县| 民权县| 林芝县| 日土县| 香河县| 泰和县| 泽库县| 德安县| 桂东县| 墨脱县| 运城市| 河曲县| 赣州市| 正镶白旗| 老河口市| 冕宁县| 改则县| 南宁市| 岑溪市| 漳州市| 安达市| 大名县| 黄骅市| 岳池县| 平阴县| 本溪市| 弥渡县| 政和县| 彭阳县| 龙南县| 德格县| 准格尔旗| 石柱| 阿鲁科尔沁旗| 天峻县| 建阳市| 蒲江县| 达日县| 石城县| 广水市|