Как добавить пробелы в динамическую строку в построителе строк для определенного поля длины в ASP.NET с C#?
Я хочу добавить пробелы в динамическую строку в построителе строк для определенного поля длины в asp.net с c#
Здесь строка динамична, и она будет иметь некоторую длину меньше указанной длины, и мне нужно добавить пробелы до этой указанной длины.
Что я уже пробовал:
sbOAKAccp.Append("01");//Record Type sbOAKAccp.Append("03");//Standard Level sbOAKAccp.Append(dsXml.Tables["EHR_M01"].Rows[0]["TestFileIndicator"].ToString());//Test Field Indicator sbOAKAccp.Append(dsXml.Tables["EHR_M01"].Rows[0]["DestinationRoutingNumber"].ToString());//Destination Routing Number sbOAKAccp.Append(strFileName);//OCE/RCE Filename sbOAKAccp.Append(dsXml.Tables["EHR_M01"].Rows[0]["FileCreationDate"].ToString());//File Creation Date sbOAKAccp.Append(dsXml.Tables["EHR_M01"].Rows[0]["FileCreationTime"].ToString());//File Creation Time sbOAKAccp.Append("N");//Resend Indicator sbOAKAccp.Append(71);//ECE Type sbOAKAccp.Append("01");//ECE Status Code(Reject-99) sbOAKAccp.Append("Accepted with exceptions".PadRight(29, ' '));//Collection Status Description sbOAKAccp.Append(Environment.NewLine);
[no name]
https://msdn.microsoft.com/en-us/library/66f6d830(v=против 110). aspx