我想在 python 中使用正则表达式找到以下模式 [3.000, 3.000]或(1.07,24.96)
我需要找到方括号和圆括号以及 1 到 3 位浮点数
regex="^[(\[]/\d+\.\d+/,/\d+\.\d+/[)\]]$"
输出为空白,未找到匹配项。
[(\[]- square/round braces
d+\.\d+/- decimal number
a comma and another decimal number
[)\]]- square/round closing
梦里花落0921
相关分类