求助!~ 关于C#里读取txt文档或者ini文档里数据 赋值给变量的

2024-12-02 04:13:58
推荐回答(2个)
回答1:

string sData = "";
string sRegCityData = @"city_(?[a-z]+)_(?\d+)\=(?\d+)";
System.Text.RegularExpressions.Regex reg = new System.Text.RegularExpressions.Regex(sRegCityData);
System.Text.RegularExpressions.MatchCollection match = reg.Matches(sData);
for (int I = 0; I < match.Count; I++)
{
//逐个导入到相应数组
//match[I].Groups["city"].Value的值选择数组
//match[I].Groups["no"].Value的值指示在数组中的索引
//match[I].Groups["data"].Value
}

回答2:

先readline,在用split拆分一下