使用正規表示式符合括號外的逗號
問題:
問題:考慮一個🎜>問題:
考慮一個🎜>問題: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);
考慮一個多個的字串逗號,例如「12,44,foo,bar,(23,45,200),6。」目標是在Java 中建立一個正規表示式,符合除括號內的逗號之外的所有逗號,即在給定範例中僅匹配23 和45 之後的逗號。
以上是如何在Java中使用正規表示式來匹配括號外的逗號?的詳細內容。更多資訊請關注PHP中文網其他相關文章!