I have recently moved my site from an asp platform to drupal. I am trying to modify the advanced settings of the Search 404 module to omit certain items from the old url.

An example of the old site url:
www.countryhound.com/Articles/1747/Taylor-Swift-Partners-With-Lei-Clothi...

I have successfully told it to omit the words "Articles" and the file extension aspx.

But then the 404 page on the new site leaves me with this in the search box:
"1747 Taylor Swift Partners With Lei Clothing"

No visitor will know to remove the 1747 manually by themselves, and if you don't remove it, you get "no results found".

So I need to have it omit the numeric string that is dynamically created, the "1747" in this example, but I don't know how to!

I tried a suggestion found in another post that said to omit "0 1 2 3 4 5 6 7 8 9" but obviously that doesn't work in my case because my numeric string does not have the spaces.

I read another post that said modifying PCRE REGEX might solve the issue, but that kind of code altering/writing is waaaaaay above my head.

Can someone tell me how to achieve omitting the numeric string?

Thanks!