📌  相关文章
📜  c# 正则表达式查找括号之间的数字 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:40.155000             🧑  作者: Mango

代码示例2
\(             # Escaped parenthesis, means "starts with a '(' character"
    (          # Parentheses in a regex mean "put (capture) the stuff 
               #     in between into the Groups array" 
       [^)]    # Any character that is not a ')' character
       *       # Zero or more occurrences of the aforementioned "non ')' char"
    )          # Close the capturing group
\)             # "Ends with a ')' character"