I have a file which is text and using that file I need to get the single line and the line can vary or decrease I have tried one regex method however, in that method I am getting spaces also I do not want the spaces so please any help would be appreciated
The regex which I have used is
(?<=\n\s)[a-z A-Z 0-9 . -]*a-z A-Z 0-9Input.txt (2.8 KB) output.txt (1.6 KB)
I want each line
Thanks
Happy Automation
Are you able to paste the sample in your reply and tell us the output(bold the sample even). Any information on the pattern of the text will be helpful also.
To remove the excessive spaces you could use a replace activity and use this pattern β\s{2,}β and replace with ββ.