Powershell 字符串插值是否支持格式说明符
Does Powershell string interpolation support format specifiers
powershell 中的典型字符串格式,例如使用填充或指定数字可以这样写:
>>> "x={0,5} and y={1:F3}" -f $x, $y
x= 10 and y=0.333
但在 Powershell 中,您还可以使用字符串插值,例如
>>> $x=10
>>> $y=1/3
>>> "x=$x and y=$y"
x=10 and y=0.333333333333333
并且在 C# 中字符串插值也支持格式化说明符:
> var x = 10;
> var y = 1.0/3.0;
> $"x={x,5} and y = {y:F2}";
"x= 10 and y = 0.33"
有没有办法在 Powershell 中使用它?我尝试了很多组合,例如
>>> "var=$($var, 10)"
var=10 10
但其中 none 有效。这受支持吗?或者是否有调用 C# 来使用它的简洁方法?
update 作为 Mathias 的回答并且在 Powershell 的 github 上确认目前不支持,所以我做了一个 feature request here
Is this supported?
否,字符串扩展时不支持格式化
您可能已经注意到,PowerShell 中的字符串扩展通过天真地解析嵌套在双引号字符串中的子表达式来工作 - 没有 {}
占位符结构。
如果您想要字符串格式化,-f
是可行的方法。
FWIW,$s -f $a
直接转换为 String.Format($s, $a)
调用
对于支持字符串格式的值类型,您通常也可以使用格式字符串调用 ToString()
(就像在 C# 中一样):
PS C:\> $a = 1 / 3
PS C:\> $a.ToString("F2")
0.33
powershell 中的典型字符串格式,例如使用填充或指定数字可以这样写:
>>> "x={0,5} and y={1:F3}" -f $x, $y
x= 10 and y=0.333
但在 Powershell 中,您还可以使用字符串插值,例如
>>> $x=10
>>> $y=1/3
>>> "x=$x and y=$y"
x=10 and y=0.333333333333333
并且在 C# 中字符串插值也支持格式化说明符:
> var x = 10;
> var y = 1.0/3.0;
> $"x={x,5} and y = {y:F2}";
"x= 10 and y = 0.33"
有没有办法在 Powershell 中使用它?我尝试了很多组合,例如
>>> "var=$($var, 10)"
var=10 10
但其中 none 有效。这受支持吗?或者是否有调用 C# 来使用它的简洁方法?
update 作为 Mathias 的回答并且在 Powershell 的 github 上确认目前不支持,所以我做了一个 feature request here
Is this supported?
否,字符串扩展时不支持格式化
您可能已经注意到,PowerShell 中的字符串扩展通过天真地解析嵌套在双引号字符串中的子表达式来工作 - 没有 {}
占位符结构。
如果您想要字符串格式化,-f
是可行的方法。
FWIW,$s -f $a
直接转换为 String.Format($s, $a)
调用
对于支持字符串格式的值类型,您通常也可以使用格式字符串调用 ToString()
(就像在 C# 中一样):
PS C:\> $a = 1 / 3
PS C:\> $a.ToString("F2")
0.33