I have the following expression
List<string> Images = Regex.Matches(html, @"(?<=/PI/).*(?=/500/)").Cast<Match>().Select(m => m.Value).ToList();
It is getting all value between /PI/ and /500/
I want to make sure that that each value is no longer than 3 character.