gpt4 book ai didi

powershell - 拆分选择字符串

转载 作者:行者123 更新时间:2023-12-03 00:26:21 24 4
gpt4 key购买 nike

给定这个变量

$foo = help | Select-String powershell

尝试拆分会失败

PS > $foo.split()
Method invocation failed because [Microsoft.PowerShell.Commands.MatchInfo]
does not contain a method named 'split'.
At line:1 char:1
+ $foo.split()
+ ~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [], RuntimeException
+ FullyQualifiedErrorId : MethodNotFound

如何拆分这个变量?

最佳答案

匹配线的字符串值在 MatchInfo 对象的 Line 属性中。

$foo.Line.split()

关于powershell - 拆分选择字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24846685/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com