使用正则表达式匹配括号外的逗号
匹配文本中的特定模式是编程中的一项常见任务,特别是在处理文本文件或用户时输入。在本例中,目标是查找字符串中未括在括号内的所有逗号。
使用 Java 正则表达式,可以制作正则表达式模式来实现这一目标。提供的正则表达式为:
Pattern regex = Pattern.compile( ", # Match a comma\n" + "(?! # only if it's not followed by...\n" + " [^(]* # any number of characters except opening parens\n" + " \) # followed by a closing parens\n" + ") # End of lookahead", Pattern.COMMENTS);
此模式分解如下:
负向先行确保当前逗号后面不跟右括号,这有效地排除了括号内的逗号。
在 Java 中,Pattern 类可用于编译和匹配正则表达式模式。然后,编译后的模式可用于识别输入字符串中的匹配子字符串。
示例用法:
String input = "12,44,foo,bar,(23,45,200),6"; Matcher matcher = regex.matcher(input); while (matcher.find()) { System.out.println(matcher.group()); }
此代码将打印不在括号内的逗号,如指定的正则表达式:
, , ,
以上是如何在 Java 中使用正则表达式查找括号外的逗号?的详细内容。更多信息请关注PHP中文网其他相关文章!