Removing all numbers after a symbol

Advanced Renamer forum
#1 : 17/09-19 23:19
Vyki
Vyki
Posts: 1
Hello!

How would I remove the symbol and all numbers after the symbol in a file name for a batch file rename?

For instance,

12456 $104,444.08

How would I remove the dollar sign and everything after it? The amounts vary.


17/09-19 23:19
#2 : 18/09-19 09:28
David Lee
David Lee
Posts: 1125
Remove pattern: $*

Note: NOT a Regular Expression
(The RegEx version would use pattern: \$.* )


18/09-19 09:28 - edited 18/09-19 13:54