How can I stretch some string element _text
from
A
B
C
to
A
B
C
?
Actually, I have some text getting from DB
_text = this.NormalizeString(DinamicLibrary.LoadText(DinamicLibrary.Path[(int)_category] + _textdllName, this.TextNumber));
What should I do with this query or with _text
later to get what I want?
I understand that I should change \n
to \n\n
but dunno how.
var result = s.Replace(Environment.NewLine, Environment.NewLine + Environment.NewLine);
string newString = oldString.Replace("\n", "\n\n");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With