I need to delete certain gifs from a web site. All of these gifs have a common name, the are all "(something)-disclose.gif". Here is the code that I'm trying to use. I just dont know how to put in a place holder for the something part to accept anyword as long as it ends in -disclose.gif.
where i have the question marks is where i need the help
if (/\<img src=(???)-disclose.gif(.*)\>/i) {
$_ = "";
}