Hi Team,
My string value string=“Test
Demo”
but i need output like Test Demo or TestDemo
can you anyone help me these
Hi Team,
My string value string=“Test
Demo”
but i need output like Test Demo or TestDemo
can you anyone help me these
@Mada_Sai_Krishna,
To remove newline characters and replace them with a space:
stringvariable = stringvariable.Replace(Environment.NewLine, " ").Replace(vbLf, " ").Replace(vbCr, " ")
To remove newline characters and join words without spaces:
stringvariable = stringvariable.Replace(Environment.NewLine, "").Replace(vbLf, "").Replace(vbCr, "")
Thanks,
Ashok
Try the below expression,
- Assign -> Input = "Test
Demo"
- Assign -> Output = Input.Replace(Vblf," ")
Hope it helps!!