What I’m looking for is to extract this text and correct it so that it appears in a more linear form, for example, “Hello! My name is Alexis Mendoza. How are you?'”
You can use the Simple String Mainpulations for adjsting the text. Check the below expression,
- Assign -> InputString = "Hello!
My name is
Mahesh How are you?"
- Assign -> Output = String.Join(" ", InputString.Split(New Char() {}, StringSplitOptions.RemoveEmptyEntries))
Check the below workflow for better understanding,