I can afford the £200 regex expansion for a simple job, and then have hassle of distributing that.
I need to turn:
into -> Test1234
and things like
into -> Test23
So that's a del,! and [0-9].
But the [0-9] number could be any length of digits.
I don't want to have to use the Right or Left functions and VBA if possible because that means learning VB. I can see the =LEFT or =RIGHT could be useful too. I'm looking into it, but it's a lot of work when I've never really programmed a decision before. Surely there's another way to do this?
I could do this easily with grep, cut, awk and sed, but I need this to work for colleges using Excel07 and WinXP.
Is there a .dll I can reference in my code (so Tools>references in VB doesn't need to be setup by the user) that can do it?
Thank you. I'm sure this has to be a common problem. I've noticed people asking similar questions, but none I've found cover matching digits [0-9] in combination with a text string pattern.
I need to turn:
Code:
fooTest1234foo
and things like
Code:
foofoo123Test23foofoo
So that's a del,! and [0-9].
But the [0-9] number could be any length of digits.
I don't want to have to use the Right or Left functions and VBA if possible because that means learning VB. I can see the =LEFT or =RIGHT could be useful too. I'm looking into it, but it's a lot of work when I've never really programmed a decision before. Surely there's another way to do this?
I could do this easily with grep, cut, awk and sed, but I need this to work for colleges using Excel07 and WinXP.
Is there a .dll I can reference in my code (so Tools>references in VB doesn't need to be setup by the user) that can do it?
Thank you. I'm sure this has to be a common problem. I've noticed people asking similar questions, but none I've found cover matching digits [0-9] in combination with a text string pattern.