Regex: how to select a specific link?

Hi,

I have a Problem with the Website https://www.handelsregister.de.

First: Here is the sitemap:

{"_id":"vereine","startUrl":["https://www.handelsregister.de"],"selectors":[{"id":"link1","type":"SelectorLink","parentSelectors":["_root"],"selector":"a#main\.search","multiple":false,"delay":0},{"id":"link2","type":"SelectorElementClick","parentSelectors":["link1"],"selector":"tr:nth-of-type(17):contains('') input:nth-of-type(1)","multiple":false,"delay":"6000","clickElementSelector":"tr:nth-of-type(17):contains('') input:nth-of-type(1)","clickType":"clickOnce","discardInitialElements":false,"clickElementUniquenessType":"uniqueText"},{"id":"link3","type":"SelectorLink","parentSelectors":["link2"],"selector":"parent","multiple":false,"delay":"6000"},{"id":"UT-link","type":"SelectorLink","parentSelectors":["link3"],"selector":"td.RegPortErg_RandRechts a:nth-of-type(5)","multiple":true,"delay":0}]}

My Problem:
First I want to download the table.
Afterwards, I would like to open all the links "UT". But: When I mark these links, it often marks the wrong one. As can be seen in the picture, for example, it often marks "SI" instead of "UT". The current command is: td.RegPortErg_RandRechts a:nth-of-type(5)

Here is the pic:
regex

I know...the reason is, that UT is not always the 5. link. But is it possible to select the correct link with a REGEX command? Can I order the software to always open the link called "UT"?

Thank you!

You can add :contains('UT') to the 'a' selector so that the scraper will only select the link that contains UT.

Your full selector would look like this - td.RegPortErg_RandRechts a:contains('UT')

That works - thank you!