gpt4 book ai didi

powershell - 如何在 Windows Powershell 中转换数据类型?

转载 作者:行者123 更新时间:2023-12-02 22:36:46 28 4
gpt4 key购买 nike

我是 powershell 的新手,在尝试将字符串转换为整数时遇到了困难。

如果我运行以下命令:Get-DefaultAudioDeviceVolume,它通常会返回一个类似于 50.05816% 的数字,我已确认它是一个字符串。我需要将其转换为整数 (50)。显然,我可以在我的脚本中对整数进行硬编码,但出于脚本的目的,我需要它在转换时具有灵 active 。先前测试的结果发生了变化,我想将整个整数传递到更远的地方。

提前致谢!

最佳答案

如果字符串包含 % 符号,您需要将其删除,然后您可以使用 -as 运算符转换为 [int]

[string]$vol = "50.05816%"

$vol_int = $vol.Replace('%','') -as [int]

-as 运算符非常有用,还有很多其他用途,本文介绍了其中的一些用途:https://mcpmag.com/articles/2013/08/13/utilizing-the-as-operator.aspx

关于powershell - 如何在 Windows Powershell 中转换数据类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40767324/

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