Specific data from Get OCR Text

Hi

i am using get OCR Text as data scraping does not seem to be able to work on a specific application that i am using.
The problem i have is that i only need to get the “owner name” part of the text.

Any solution to this problem?

Use Regex to solve this, if your document always follows the Standard sent in the image, I believe that the expression (((?<=Owner Name\s)\b.*$)) Will help you in what you need.

I did a test using regex101: build, test, and debug regex and it worked well