Retrieve data from website

Good day,

We use different County websites and I want to retrieve some data when I use the website, the feature is not allowing me to select specific text such as the address or name, and I'm unable to highlight them is there a way I can filter the highlighted part of the website so it puts the information I want?
image

Hi @jfierro,
You can use text manipulation functions to extract the text you need. Specifically, extractregex could work here:

{text="Address:
VERMA SUJAY &
SHRIVASTAVA NEHA
2004 MULBERRY WAY
IRVING, TX 75063-0000

Property Site Address:
more text"}
{=extractregex(text,"^Address:\n([\n\S\s]*)\nProperty Site Address:")}

If you need help creating the regex, feel free to reach out.

1 Like

Thank you for the response I was looking for a more automated way is there a way I can use the website feature along with the extractregex so it automatically retrieves this data?

Yes. Just replace text in the extractregex command with your website selector:

{=extractregex(<paste your selector here>,"^Address:\n([\n\S\s]*)\nProperty Site Address:")}

1 Like

Awesome! Thank you for your help.