Here is what I'm trying to do.
I have Business License records that I'd like to file alphabetically. If the Business starts with a letter it's no problem. For any business that starts with a number (i.e. 7 Eleven, 3 Margaritas, etc.) I'd like to file it in a folder entitled "0" which is preceding the "A"folder. I've applied the following formating to the token: \0[0-9] this works in every case except when the number is followeed by a alpha character, in which case the result is the original number and not a 0. My regular expression ^.{1} is already specifing to only use the 1st character so I'm not sure why this is happening. See my examples below and also my screen shot of the result that does not work. Thank You for any help you can provide!
Test value: 4
Result:0 (good)
Test Value: 4t
result: 4 (bad)
Test Value: A
Result: A (good)
Test Value: A1
Result: A (good)
Test Value: 12345
Result: 0 (good)
Test Value: ABCD
Result: A (good)
Bonus Question: To complicate it even further, what do you do with a business name that starts with a "#", which of course I'd like to file in the "0" folder as well.