在 PowerShell 中将字符串转换为整数

Rohan Timalsina 2023年1月30日
  1. 在 PowerShell 中使用 [int] 将字符串转换为整数
  2. 在 PowerShell 中定义变量的数据类型以将字符串转换为整数
在 PowerShell 中将字符串转换为整数

本教程将教你在 PowerShell 中将字符串转换为整数。

在 PowerShell 中使用 [int] 将字符串转换为整数

让我们考虑一下我们有一个变量 $a,如下所示。

$a = 123

$a 的数据类型是一个整数

$a.GetType().Name

输出:

Int32

但是当你用 " " 括起来值时,数据类型将变成 string

$b = "123"
$b.GetType().Name

输出:

String

要将这种字符串数据类型转换为整数,你可以使用 [int],如下所示。

$b = $b -as [int]
$b.GetType().Name

输出:

Int32

在 PowerShell 中定义变量的数据类型以将字符串转换为整数

PowerShell 可以自行检测变量的数据类型。

你无需具体说明数据类型并声明变量。但是,你可以在变量之前定义变量的数据类型,以便你可以强制数据类型。

例如:

[int]$c = "456"
$c.GetType().Name

输出:

Int32

如果你尝试将整数数据类型强制为字符串值,则会出现错误。

[int]$data = "storage"

输出:

Cannot convert value "storage" to type "System.Int32". Error: "Input string was not in a correct format."
At line:1 char:1
+ [int]$data = "storage"
+ ~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : MetadataError: (:) [], ArgumentTransformationMetadataException
    + FullyQualifiedErrorId : RuntimeException
作者: Rohan Timalsina
Rohan Timalsina avatar Rohan Timalsina avatar

Rohan is a learner, problem solver, and web developer. He loves to write and share his understanding.

LinkedIn Website

相关文章 - PowerShell String