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
.
1 Answer
Reset to default 1the -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 \s
and \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
版权声明:本文标题:Powershell script to rename multiple files in subfolders - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743755227a2533387.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论