匹配 java 标点符号:使用正则表达式 [\p{punct}]。[\p{punct}] 表示 unicode 标点符号类与任何标点符号类相匹配 unicode 标点符号字符。
Java 正则表达式匹配标点符号
如何使用 Java 标点符号的正则表达式匹配?
Java 提供了 Pattern 和 Matcher 类,字符串操作可以很容易地使用正则表达式。其中,匹配标点符号的正则表达式为:
[\\p{Punct}]
详细解释:
立即学习"Java免费学习笔记(深入);
- \\p{Punct} 表示 Unicode 与任何标点符号类相匹配 Unicode 标点符号字符。
- 方括号 [] 表示字符类,即匹配方括号中的任何字符。
- 反斜杠 \ 将方括号中的字符转义为普通字符,而不是正则表达式元字符。
示例代码:
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()); } } }
输出:
Found punctuation mark: , Found punctuation mark: ( Found punctuation mark: ) Found punctuation mark: . Found punctuation mark: ?
以上就是java正则表达式匹配标点符号的详细内容,更多请关注图灵教育的其他相关文章!