我从外部源获取一堆文本,将其保存在一个变量中,然后将该变量显示为更大的 HTML 块的一部分。我需要按原样显示它,而美元符号给我带来了麻烦。
这是设置:
# get the incoming text
my $inputText = "This is a $-, as in $100. It is not a 0.";
print <<"OUTPUT";
before-regex: $inputText
OUTPUT
# this regex seems to have no effect
$inputText =~ s/\$/\$/g;
print <<"OUTPUT";
after-regex: $inputText
OUTPUT
在现实生活中,这些print
块是更大的 HTML 块,其中直接插入了变量。
我尝试使用转义美元符号,s/\$/\$/g
因为我的理解是第一个\$
转义正则表达式以便它搜索$
,第二个\$
是插入的内容,然后转义 Perl 以便它只显示$
。但我无法让它工作。
这是我得到的:
before-regex: This is a 0, as in . It is not a 0.
after-regex: This is a 0, as in . It is not a 0.
这就是我想看到的:
before-regex: This is a 0, as in . It is not a 0.
after-regex: This is a $-, as in $100. It is not a 0.
谷歌搜索让我想到了这个问题。当我尝试在答案中使用数组和 for 循环时,它没有效果。
如何让块输出完全按原样显示变量?