替换一段文本中特定的占位符可以使用.NET中的String类的replace方法。
PS C:\> $txt="{site}: https://www.pstips.net" PS C:\> $txt.Replace("{site}","PowerShell") PowerShell: https://www.pstips.net
也可以直接使用操作符replace
PS C:\> "{year}-%month%-day" -replace "{year}","1989" -replace "%month%","6" -replace "day","4" 1989-6-4
本文链接: https://www.pstips.net/powershell-replace-text.html
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!