I know how to replace part string...
if (linia->Contains("system_token")) {poprawka = linia->Replace( "system_token", systems );}
but what should I do, If i need to replace ENTERs (linebreaks)...
For example:
User type in textbox
Hey,
I am
Michael
The result (taken as variable) should be:
Hey,</br>I am</br>Michael
Thx!