------------------------------------------------------------------------------------------------------Be aware that it will match anything that is not the https://lastfm.freetls.fastly.net/i/u/64s/4128a6eb29f94943c9d206c08e625904.jpg empty cover image link, including "", "abc" and so on. If you need to exclude more than the said link, you can use | aka the logical OR inside the (?!...) lookaround. For example:to exclude "abc" as well from matching.Code:
RegExp=(?siU)<td class="chartlist-image">.*<img.*src="(?!https:\/\/lastfm\.freetls\.fastly\.net\/i\/u\/64s\/4128a6eb29f94943c9d206c08e625904\.jpg|abc)(.*)"
I found a second URL that contains an empty image, how do I append the URL?
You explained part of how. But I didn't understand if I could append the whole URL e.g. with | newurl.png
Or do I need the whole RegEX structure for the new URL too?.
Code:
RegExp=(?siU)<td class="chartlist-image">.*<img.*src="(?!https:\/\/lastfm\.freetls\.fastly\.net\/i\/u\/64s\/4128a6eb29f94943c9d206c08e625904\.jpg | https://lastfm.freetls.fastly.net/i/u/64s/c6f59c1e5e7240a4c0d427abd71f3dbb\.jpg)(.*)"

Statistics: Posted by Rooky_89 — Today, 5:26 pm