admin管理员组

文章数量:1344949

I try to create a little powershell script to rename multiple files named like babebibobu (ver.2.0).xlsx in a folder and subfolders.

I want to remove the (ver.X.X) from each filename.

I tried this one:

Get-ChildItem -Path "c:\test" -Recurse -Include "* (ver*.*).*" | 
    Rename-Item -NewName { $_.Name -replace " (ver*.*)","" }

but filename becomes babebibobu ().xlsx.

I try to create a little powershell script to rename multiple files named like babebibobu (ver.2.0).xlsx in a folder and subfolders.

I want to remove the (ver.X.X) from each filename.

I tried this one:

Get-ChildItem -Path "c:\test" -Recurse -Include "* (ver*.*).*" | 
    Rename-Item -NewName { $_.Name -replace " (ver*.*)","" }

but filename becomes babebibobu ().xlsx.

Share Improve this question edited 14 hours ago Jan 9,8256 gold badges20 silver badges33 bronze badges asked 14 hours ago Kermit67Kermit67 232 bronze badges New contributor Kermit67 is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 0
Add a comment  | 

1 Answer 1

Reset to default 1

the -replace uses regex for evaluating what needs to be replaced. (...) defines a group not parenthesis characters, which need to be escaped.

Moreover, the regex inside the group is not so good.

Try this, based on a (ver.2.0) versioning :

Get-ChildItem -Path "c:\test" -Recurse -Include "* (ver*.*).*" |
    Rename-Item -NewName { $_.Name -replace "\s\(ver\.\d+\.\d+\)","" }

if you may have (ver 2.0) syntax, then the correct regex can be \s\((\.|\s)\d+\.\d+\)

\s for any space char and (\.|\s) is a group to say a dot (\.) or (|) any space char (\s)
\(and \) for escaped parenthesis

\d for any digit between 0 and 9 + for once or more this will include version or minor version > 10

\. escaped dot because you want a dot and not any character but line feed (. stands for any char but LF)

Be aware that regex are case sensitive, so \sand \d need to be lower case (upper case will be the opposite, all but space and all but digit)

本文标签: Powershell script to rename multiple files in subfoldersStack Overflow