#1 : 01/05-23 07:25 readmit
Posts: 2
|
I need some way to remove everything after the first dash in the name. I have several files and I just want to remove everything that comes after -
|
#2 : 01/05-23 11:11 David Lee
Posts: 1125
|
I assume that you also want to remove the hyphen. If so, simply use...
Remove pattern: -* If you want to retain the trailing hyphen then you will need to use a regular expression... Remove pattern: -\K.* Use regular expressions |
#3 : 01/05-23 20:56 readmit
Posts: 2
|
Reply to #2:
Thanks, I went to remove, then I set -* and I put a checkmark on interpret as wildcard and it worked. |