中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
栾城县| 山西省| 内江市| 江达县| 兴化市| 巢湖市| 招远市| 漾濞| 陆川县| 阿拉尔市| 河北区| 广西| 麦盖提县| 陈巴尔虎旗| 清水县| 勃利县| 汉中市| 麻阳| 桐城市| 乌兰县| 灵丘县| 沐川县| 承德县| 金门县| 台东市| 鄱阳县| 扶沟县| 镇平县| 赣州市| 大连市| 六安市| 隆安县| 夏河县| 邹城市| 栾川县| 石狮市| 阳城县| 皮山县| 赣州市| 分宜县| 无极县|