在行尾添加空格

时间:2015-09-15 06:24:51

标签: c#

我需要在行尾添加空格。这是我使用的代码。

string newText = searchRegex.Replace(text, newLine);
string[] strings=newText.Split('\n');
newText = string.Empty;
for (int i = 1; i < strings.Length; i++)
{
    newText += strings[i].PadRight(10, '$');
    newText += "\n";
}

但是,在行的开头添加了空白区域。任何人都可以帮助我吗?

0 个答案:

没有答案