0
我有以下的表達沒有greatwer的長度獲取從字符串值超過2個字符
List<string> Images = Regex.Matches(html, @"(?<=/PI/).*(?=/500/)").Cast<Match>().Select(m => m.Value).ToList();
它越來越/PI/
和/500/
我要確保之間的所有值,每個值不超過3個字符。
我有以下的表達沒有greatwer的長度獲取從字符串值超過2個字符
List<string> Images = Regex.Matches(html, @"(?<=/PI/).*(?=/500/)").Cast<Match>().Select(m => m.Value).ToList();
它越來越/PI/
和/500/
我要確保之間的所有值,每個值不超過3個字符。
(?<=/PI/).{0,3}(?=/500/)