How to write the values of write line text values in the text file?

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

1 Like

@Bramma_Vani

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

1 Like

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.

1 Like

Hi @Bramma_Vani

If you find the solution please do mark as solution to close the loop.

Regards

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.