I have used the inputString.Replace(“”, “”).trim
but this are not working here. As This text is coming from the Output Data Table Activity in a string variable.
I want to replace this by special character. So here nothing is working. can you look into that
Fine \r\n coming as a string or as a value
If it’s a string the above method would work
Or
If it’s a value then mention as string out_str = in_str.Replace(Environment.Newline,“”)
or string out_st = in_str.Replace(VbCrLf,“”)
If you in the snapshot some character are in string format and some are not. Here I the replace is not working. I want to replace this patter with unique character so that it’s easy to recognized each lines. @Sugumar8785@Palaniyappan