I can afford the £200 regex expansion for a simple job, and then have hassle of distributing that.
I need to turn:
fooTest1234foo
into -> Test1234
and things like
foofoo123Test23foofoo
into -> Test23
So that's a del,! and [0-9].
But the [0-9] number could be any length of digits.
I...