PowerShell 技能连载 - 向字符串添加数字(第 1 部分)

双引号括起来的字符串可以方便地扩展变量,但是这个概念并不是万无一失的:

1
2
3
4
5
6
$id = 123

# this is the desired output:
# Number is 123:
# this DOES NOT WORK:
"Number is $id:"

如您所见的上述例子中,当您在双引号中放置变量时,PowerShell 自动判断变量的起止位置。而 : 被当成变量的一部分。要修复这个问题,您需要某种方法来明确地标记变量的起止位置。以下是一些修复这类问题的方法:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$id = 123

# PowerShell escape character ends the variable
"Number is $id`:"
# braces "embrace" the variable name
"Number is ${id}:"
# subexpressions execute the code in the parenthesis
"Number is $($id):"
# the format operator inserts the array on the right into the
# placeholders in the template on the left
'Number is {0}:' -f $id
# which is essentially this:
'Number is ' + @($id)[0] + ':'

# careful with "addition": this requires the first
# element to be a string. So this works:
'Number is ' + $id + ':'
# this won't:
$id + " is the number"
# whereas this will again:
'' + $id + " is the number"

PowerShell 技能连载 - 向字符串添加数字(第 1 部分)

http://blog.vichamp.com/2019/04/12/adding-numbers-to-a-string-part-1/

作者

吴波

发布于

2019-04-12

更新于

2022-07-06

许可协议

评论