Removing <a></a> tags with regex?

Hello,
I have been desperately trying since yesterday to find a regex to extract an html without part of it... let me explain, I am scraping an html table which has links, I would like to recover this table, but without the links , for example in these lines I would like to remove the tags <a href.*> and
I have tried several solutions without success in finding what I need.

<tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--attribute_pa_carte-graphique-capacite"> <th class="woocommerce-product-attributes-item__label">Carte Graphique (Capacité)</th> <td class="woocommerce-product-attributes-item__value"><p><a href="https://mysite.com/carte-graphique-capacite/128-mb/" rel="tag">128 MB</a></p> </td> </tr> <tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--attribute_pa_carte-graphique-modele"> <th class="woocommerce-product-attributes-item__label">Carte Graphique (Modèle)</th> <td class="woocommerce-product-attributes-item__value"><p><a href="https://mysite.com/carte-graphique-modele/hd-graphics-510/" rel="tag">HD Graphics 510</a></p> </td> </tr>

Thanks for your help

Why the need for regex? You could just use a text selector:

Type: Text
Selector: tr:contains('Capacité') p > a

Type: Text
Selector: tr:contains('Modèle') p > a

hello,
Thank you for this idea but it is not adaptable because the table of which this code snippet is part is variable, it does not always present the same content and I need to keep the data formatting.
I tried to retrieve the table with the "table" type but I couldn't, the table doesn't have a vertical header, but a horizontal one.. I'm not a scraping expert so it's probably for that :wink:
I put the complete code of the table maybe you can help me to recover it in another way.
thanks in advance

 <table class="woocommerce-product-attributes shop_attributes"> <tbody class=""><tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--attribute_pa_bluetooth-oui-non"> <th class="woocommerce-product-attributes-item__label">Bluetooth (Oui/Non)</th> <td class="woocommerce-product-attributes-item__value"><p><a href="https://mysite.com/bluetooth-Oui-Non/avec-bluetooth/" rel="tag">Avec Bluetooth</a></p> </td> </tr> <tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--attribute_pa_carte-graphique-capacite"> <th class="woocommerce-product-attributes-item__label">Carte Graphique (Capacité)</th> <td class="woocommerce-product-attributes-item__value"><p><a href="https://mysite.com/carte-graphique-capacite/128-mb/" rel="tag">128 MB</a></p> </td> </tr> <tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--attribute_pa_carte-graphique-modele"> <th class="woocommerce-product-attributes-item__label">Carte Graphique (Modèle)</th> <td class="woocommerce-product-attributes-item__value"><p><a href="https://mysite.com/carte-graphique-modele/hd-graphics-520/" rel="tag">HD Graphics 520</a></p> </td> </tr> <tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--attribute_pa_clavier-langage"> <th class="woocommerce-product-attributes-item__label">Clavier (Langage)</th> <td class="woocommerce-product-attributes-item__value"><p><a href="https://mysite.com/clavier-langage/azerty-fr/" rel="tag">azerty (fr)</a></p> </td> </tr> <tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--attribute_pa_clavier-oui-non"> <th class="woocommerce-product-attributes-item__label">Clavier (Oui/Non)</th> <td class="woocommerce-product-attributes-item__value"><p><a href="https://mysite.com/clavier-Oui-Non/avec-clavier/" rel="tag">Avec Clavier</a></p> </td> </tr> <tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--attribute_pa_clavier-retroeclaire"> <th class="woocommerce-product-attributes-item__label">Clavier (rétroéclairé)</th> <td class="woocommerce-product-attributes-item__value"><p><a href="https://mysite.com/clavier-retroeclaire/clavier-retroeclaire/" rel="tag">Clavier Rétroéclairé</a></p> </td> </tr> <tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--attribute_pa_couleur-materiel"> <th class="woocommerce-product-attributes-item__label">Couleur (Matériel)</th> <td class="woocommerce-product-attributes-item__value"><p><a href="https://mysite.com/couleur-materiel/noir/" rel="tag">Noir</a></p> </td> </tr> <tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--attribute_pa_display-port-nb-port"> <th class="woocommerce-product-attributes-item__label">Display Port (Nb Port)</th> <td class="woocommerce-product-attributes-item__value"><p><a href="https://mysite.com/display-port-nb-port/0-dp/" rel="tag">0 DP</a></p> </td> </tr></tbody></table>