aaa_2017_8411.csvというファイル名で、2つ目の数字4文字が欲しいサンプル
System.Text.RegularExpressions.MatchCollection mc = System.Text.RegularExpressions.Regex.Matches(item, @"\d{4}"); string code = mc[1].Value;
aaa_2017_8411.csvというファイル名で、2つ目の数字4文字が欲しいサンプル
System.Text.RegularExpressions.MatchCollection mc = System.Text.RegularExpressions.Regex.Matches(item, @"\d{4}"); string code = mc[1].Value;