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

前端 未结 3 1403
青春惊慌失措
青春惊慌失措 2020-12-02 01:53

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:

3条回答
  •  猫巷女王i
    2020-12-02 02:19

    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.

提交回复
热议问题