Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
803 views
in Technique[技术] by (71.8m points)

How to escape dollar sign ($) in a string using perl regex

I'm trying to escape several special characters in a given string using perl regex. It works fine for all characters except for the dollar sign. I tried the following:

my %special_characters;
$special_characters{"_"} = "\_";
$special_characters{"$"} = "\$";
$special_characters{"{"} = "\{";
$special_characters{"}"} = "\}";
$special_characters{"#"} = "\#";
$special_characters{"%"} = "\%";
$special_characters{"&"} = "\&";

my $string = '$foobar';
foreach my $char (keys %special_characters) {
  $string =~ s/$char/$special_characters{$char}/g;
}
print $string;
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try this:

my %special_characters;
$special_characters{"_"} = "\_";
$special_characters{"\$"} = "\$";
$special_characters{"{"} = "\{";
$special_characters{"}"} = "\}";
$special_characters{"#"} = "\#";
$special_characters{"%"} = "\%";
$special_characters{"&"} = "\&";

Looks weird, right? Your regex needs to look as follows:

s/$/$/g

In the first part of the regex, "$" needs to be escaped, because it's a special regex character denoting the end of the string.

The second part of the regex is considered as a "normal" string, where "$" doesn't have a special meaning. Therefore the backslash is a real backslash whereas in the first part it's used to escape the dollar sign.

Furthermore in the variable definition you need to escape the backslash as well as the dollar sign, because both of them have special meaning in double-quoted strings.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.6k users

...