Thanks.
- eranm
I know the * means 0 or more occurrences, would [0-9]+ work in this case?
* does not do what you think.
+ won't work either.
Test_[0-9][0-9][0-9][0-9][0-9]
Test_[0-9]* does not do what you probably think).