Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は次の表現を持っています
List<string> Images = Regex.Matches(html, @"(?<=/PI/).*(?=/500/)").Cast<Match>().Select(m => m.Value).ToList();
/PI/との間のすべての値を取得しています/500/
/PI/
/500/
各値が 3 文字以内であることを確認したい。
(?<=/PI/).{0,3}(?=/500/)