Hello
I want to remove the Line break in the String
String: “The Trustee for R & D Unit Trust T-as Guzman Y
Gomez Hawthorn”
Desired Output : “The Trustee for R & D Unit Trust T-as Guzman Y Gomez Hawthorn”
Hello
I want to remove the Line break in the String
String: “The Trustee for R & D Unit Trust T-as Guzman Y
Gomez Hawthorn”
Desired Output : “The Trustee for R & D Unit Trust T-as Guzman Y Gomez Hawthorn”
@kishan.savaliya
Read the string into a variable in UiPath.
Use the Replace
method on the variable to remove line breaks.
inputString: "The Trustee for R & D Unit Trust T-as Guzman Y
Gomez Hawthorn"
Output= inputString.ReplaceLineEndings("")
Hope it helps!!
@Parvathy @Dilli_Reddy Thank You all for the Solutions. Working Fine
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.