匹配 java 标点符号:使用正则表达式 [p{punct}]。[p{punct}] 表示 unicode 标点符号类,匹配任何 unicode 标点符号字符。

Java 正则表达式匹配标点符号
如何使用 Java 正则表达式匹配标点符号?
Java 提供了 Pattern 和 Matcher 类,可以方便地使用正则表达式进行字符串操作。其中,用来匹配标点符号的正则表达式为:
<code class="java">[\p{Punct}]</code>详细解释:
立即学习“Java免费学习笔记(深入)”;
-
\p{Punct}表示 Unicode 标点符号类,它匹配任何 Unicode 标点符号字符。 - 方括号
[]表示字符类,即匹配方括号内任何字符。 - 反斜杠
转义了方括号内的字符,使其被解释为普通字符,而不是正则表达式元字符。
示例代码:
<code class="java">import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class PunctuationMatcher {
public static void main(String[] args) {
String text = "This sentence contains various types of punctuation, such as commas(,), periods(.), and question marks(?)";
String regex = "[\p{Punct}]";
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(text);
while (matcher.find()) {
System.out.println("Found punctuation mark: " + matcher.group());
}
}
}</code>输出:
<code>Found punctuation mark: , Found punctuation mark: ( Found punctuation mark: ) Found punctuation mark: . Found punctuation mark: ?</code>











