i want removed \r\n
How can i do?
i want removed \r\n
How can i do?
Hi Buddy
We can either use two of these
string out_str = in_str.Replace(Environment.Newline,ββ)
or
string out_st = in_str.Replace(VbCrLf,ββ)
For more info on this, hope this could help you @Hyun
Cheers @Hyun
Assign above string to one string variable and say βStrβ. Then use below expression:
Str.Replace(β\r\nβ,ββ)
out_str = in_str.Replace (Environment.Newline, ββ
is working thanks
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.