I'm trying to fix a routine that extracts just the text from a web page and formats it in simple HTML for local viewing. The host (BBC News) has recently done an extreme overhaul of their HTML which is now dense with css stuff.
This is the string:
<p class="ssrcss-1q0x1qg-Paragraph eq5iqo00">
I want to replace it with:
<p>
From there I build my simplified text document with slicing and dicing.
The problem: while every example I have looked at so far includes all the css stuff after "<p", I am not confident that this will always be the case so I have tried to use a wildcard in the search operation:
<p class=*>
This has not worked, although searching on the entire string does. Using wildcards with Tasker has always been hit-or-miss with me. Is it possible in this context, and if so, what have I done wrong?