Data scrapping only relevant information

Hi Friends,

I have a web page as shown below and I need to extract only numbers (1,2,3) and not other text like “+” or “T”. Then later I need to compare with a variable.
image

PS: With Data scrapping, its extracting all the values as datable, but I need only numbers such as 1,2,3.

Please help with your ideas and suggestion.
Thanks!

At least two options are available

  • scrapping more and filter out afterwards
  • regex selector pattern: \d+ for 1 or more subsequent digits

Maybe you can share with us some more details on how you retrieve (approach & Selectors) the element(s)

1 Like

Using this it was resolved, Thank you!

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