.net的命名捕获和pyton的命名捕获的语法是不一样的,看例
.net格式
(?<name>d+) 匹配多个数字并且把捕获的结果放入name中
python或者php格式
(?P<name>d+) 匹配多个数字并把结果放入name中