While comparing PDF , matching values are in the write line of text (the values are displayed in the output panel )and I need to copy the text values in the text file.
Could you pls help ?
While comparing PDF , matching values are in the write line of text (the values are displayed in the output panel )and I need to copy the text values in the text file.
Could you pls help ?
Hi @Bramma_Vani
You can use Append Line activity to write the text whoch is in output Panel to a text file.
Regards
You can either concat the strings together usign finalstring = finalString + Environmnet.NewLine + NewString and at the end write the string to text file
Or use append line inside the loop to add all the strings to text file for each iteration
Cheers
I have created for loop and append line and it gives me the expected result.
Thank you so much for the guidance.
For each item in pdf2 (values)
Append line item and save it in a txt file
Break for loop activity
This goes and appended until all the text values are copied in txt file.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.