我想获取这个 xml 属性的整数值limit=\"25\"
我试过这个:Match match = Regex.Match(response.Content, "(?<=limit=))\\d+");
给我一个错误:“太多)的。
而这个:Match match = Regex.Match(response.Content, @"limit=([0-9])$"
这什么都不返回,匹配不成功
从这个xml:
<issues type="array" limit="25" total_count="251" offset="0">
<issue>
<id>4317</id>