在 Adob​​e Bridge 中批量重命名文件

Batch rename files in Adobe Bridge

我想批量重命名几千个文件。我找到了正则表达式的一部分,而不是第一部分。

文件名是 employeeID_employeeName-sequence 号。我只想保留 employeeID_employee 名称。

例如文件 123456_John Smith-00001.pdf 应该变成 123456_John Smith.pdf

我可以使用批量重命名,然后进行字符串替换,找到 [-\d?] 但这只会将文件名更改为 _John Smith.pdf

Please see batch rename example image

Wiktor Stribiżew 在上面的评论中使用了有效的表达方式。在字符串替换字段中,我放置了 -\d+(.\w+)$ 并将替换为字段留空。