Suppose I have this string:
string str = \"The quick brown fox jumps over the lazy dog\";
How can I replace or ignore the spaces in the str
If you want compact and simple this may be the best bet:
Textbox.Lines = MyString.Split(' ');
If you're wanting to split the text already in the box this may work:
Textbox.Lines = Textbox.Text.Split(' ');