我有一个名为 result 的变量,它是
List<List<string>>
我想解析每个元素并修复它(删除空格等)
i = 0;
foreach (List<string> tr in res)
{
foreach (string td in tr)
{
Console.Write("[{0}] ", td);
td = cleanStrings(td); // line with error
i++;
}
Console.WriteLine();
}
public string cleanStrings(string clean)
{
int j = 0;
string temp = System.Text.RegularExpressions.Regex.Replace(clean, @"[\r\n]", "");
if (temp.Equals(" "))
{
temp = " ";
temp = temp.Trim();
}
clean = temp;
return clean;
}
错误 1 无法分配给“td”,因为它是“foreach 迭代变量”
我将如何解决这个问题?