gpt4 book ai didi

powershell - 如何去除变量中除数字之外的所有内容?

转载 作者:行者123 更新时间:2023-12-03 23:29:06 24 4
gpt4 key购买 nike

我正在尝试通过 PowerShell 自动设置 IP 地址,我需要找出我的 interfaceindex 编号。

我的想法是这样的:

$x = ( Get-NetAdapter |
Select-Object -Property InterfceName,InterfaceIndex |
Select-Object -First 1 |
Select-Object -Property Interfaceindex ) | Out-String

这将输出:

InterfaceIndex--------------             3

Now the problem, when I try to grab only the number using:

$x.Trim.( '[^0-9]' )

它仍然留下“InterfaceIndex”和下划线。这会导致我的脚本的下一部分出错,因为我只需要数字。

有什么建议吗?

最佳答案

这将完成您的工作:

( Get-NetAdapter | Select-Object -Property InterfceName,InterfaceIndex | Select-Object -First 1 | Select-Object -Property Interfaceindex).Interfaceindex

实际上你不需要两次选择属性:这样做:

( Get-NetAdapter |Select-Object -First 1| Select-Object -Property InterfceName,InterfaceIndex).Interfaceindex

关于powershell - 如何去除变量中除数字之外的所有内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45146262/

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