这是我尝试使用拆分的方法
string[] req_info_texts = Regex.Matches(model_file_string_qts_corrected,
"RequirementInfo.*\"")
.OfType<Match>()
.Select(m=> m.Groups[0].Value.Split('\'').ToString())
.ToArray();
RequirementInfo.*\"
字符串"model_file_string_qts_corrected"
中的行类似于
RequirementInfo "{'1' 2' 3'4 '5' 6'7' 8'syed_syed' 'SRDD_PFC_047602' } %GIDa_033022bd_8058_4216_8b9d_71454ba5f896"
字符串中没有像上面这样的行。
我需要数组 req_info_texts 中的 syed_syed 。但是我得到的是索引超出范围异常。
你能说这是错误吗?