我需要在行尾添加空格。这是我使用的代码。
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";
}
但是,在行的开头添加了空白区域。任何人都可以帮助我吗?