How to get any specific text from screen scraping data

Hello,

I am trying to get the text from web page. I used screen scraping activity for this but not able to get actual text. Can someone please support?

Below is my data which is output of Screen scraping. and from this output I need the text which comes after Action Required for Item =
It might be Create, Delete or Modify

image

If you are obtaining text from scrapped zone then you can use a Regex in Matches Activity in order to locate the desired string.

This is an example of Regex you can use:

((\bAction\srecquired\sfor\sItem)\s(=)\s+(Create|Delete|Modify))

Hope it helps!