How to get some text from middle line from large text output of screen scraping get full text activity using string manipulation

For example,if there are 20 lines of text in get full text activity output.And want to get 7th line of text and 10 th line of text using string manipulation.
What are the expressions used to extract specific text?Can anyone help please

Hi @SUPRIYA123,

First of all, you can get the whole table with datascraping and get rid of the rows you don’t want with the filtering activity.

Regards,
MY

Str.Split(Environment.Newline.Tochararray,StringSpliOptions.RemoveEmptyEntities)

Output : Array

For Line 7 : Arr_Str(6)

For Line 10 : Arr_Str(9)

Can u please help me with example.

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