正则表达式 – Powershell:使用正则表达式的-replace

前端之家收集整理的这篇文章主要介绍了正则表达式 – Powershell:使用正则表达式的-replace前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用正则表达式替换-replace语句的引号之间的任何文本?我可以使用静态文本,但它几乎可以是任何文本.

例:

$filecontent -replace 'AssemblyCopyright("text")','AssemblyCopyright("Copyright © 2016 myCompany")' | Out-File $file

鉴于AssemblyCopyright(“text”)实际上可以包括空白

AssemblyCopyright("")

解决方法

试试吧

... -replace 'AssemblyCopyright\("[^"]*"\)','AssemblyCopyright("Copyright © 2016 myCompany")'

但请注意,这将假定引号内的文本不包含其他引用.

示例由于评论

GIF example

猜你在找的正则表达式相关文章