Scraped e-mails look distorted, how can I get it right?

Hi, I am trying to pull e-mails of this page.

The pulled e-mails seem to be hashed or otherwise distorted. When I pull the e-mail it comes in the table as:

ed.negnilsse-mukinilk@ofni

But it should come as:

info@klinikum-esslingen.de

Code of the page reads as:

bdo dir="rtl" data-da-skipelement="true">ed.negnilsse-mukinilk@ofni</bdo

Copying the e-mail with a right-click it reads as:

ed.negnilsse-mukinilk@ofni](mailto:info@klinikum-esslingen.de

What can be done to save the e-mail correctly? Thanks!

@Gunnars Hi, you can extract the e-mail reference by using an 'Element attribute' selector: section.head p:contains("Mail") a[href*="mailto:"], with an 'Attribute name' - href

Learn more: Web Scraper << How to >> Extract data from element attribute

Perfect, that helped, thank you!