与数字一样?
例如,
$string = "Hello"
$string =+ " there"
在Perl中你可以做到
my $string = "hello"
$string .= " there"
似乎有点啰嗦
$string = $string + " there"
或
$string = "$string there"
答案 0 :(得分:5)
你实际上有倒退的操作员。它应该是+=
,而不是=+
:
$string = "Hello"
$string += " there"
以下是演示:
PS > $string = "Hello"
PS > $string
Hello
PS > $string += " there"
PS > $string
Hello there
PS >
然而,这是关于你可以做你想做的最快/最短的解决方案。