06-19-2023 07:46 AM - edited 06-19-2023 07:54 AM
Team,
I have an long text with Line Feed and used "Split" Function with "\n" as delimiter and i am getting array of splitted array with Line feed in each element.
How to trim line feed character?
Tried using Trim Function but no luck.
06-29-2023 10:00 AM
SearchAndReplace(Locals.String, "\r", "", 0, False, -1, False),
SearchAndReplace(Locals.String, "\n", "", 0, False, -1, False)