PowerShell 技能连载 - 从字符串中移除文本

有时候,您也许听说过 Trim()TrimStart()TrimEnd() 可以 移除字符串中的文本。并且它们工作起来很正常:

1
2
3
4
5
PS C:\> $testvalue = "this is strange"
PS C:\> $testvalue.TrimEnd("strange")
this is

PS C:\>

但是这个呢:

1
2
3
4
5
PS C:\> $testvalue = "this is strange"
PS C:\> $testvalue.TrimEnd(" strange")
this i

PS C:\>

实际情况是 Trim() 方法将您的参数视为一个字符的列表。所有这些字符都将被移除。

如果您只是想从字符串的任意位置移除文本,请使用 Replace() 来代替:

1
2
3
4
PS C:\> $testvalue.Replace(" strange", "")
this is

PS C:\>

如果您需要进一步的控制,请使用正则表达式和锚定。要只从字符串的尾部移除文本,以下代码可以实现这个功能。只有结尾部分的 “strange” 字符串会被移除。

1
2
3
4
5
6
7
$testvalue = "this is strange strange strange"

$searchText = [Regex]::Escape("strange")
$anchorTextEnd = "$"
$pattern = "$searchText$anchorTextEnd"

$testvalue -replace $pattern

PowerShell 技能连载 - 从字符串中移除文本

http://blog.vichamp.com/2017/11/10/removing-text-from-strings/

作者

吴波

发布于

2017-11-10

更新于

2022-07-06

许可协议

评论