このxml属性の整数値を取得したいlimit=\"25\"
私はこれを試しましMatch match = Regex.Match(response.Content, "(?<=limit=))\\d+");
た:エラーが表示されます:「)が多すぎます。
and this : Match match = Regex.Match(response.Content, @"limit=([0-9])$"
this は何も返さず、一致は成功しません
このxmlから:
<issues type="array" limit="25" total_count="251" offset="0">
<issue>
<id>4317</id>