Last active
June 12, 2020 13:55
-
-
Save letam/855d7e45d8f8c97e4beac0ea515811be to your computer and use it in GitHub Desktop.
escape regex replacement string
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Return a string that's escaped and ready to be used as | |
# the replacement string in a basic regular expression. | |
# Reference: https://unix.stackexchange.com/questions/32907/what-characters-do-i-need-to-escape-when-using-sed-in-a-sh-script/33005#33005 | |
escape_regex_replacement_string() { | |
# Reference: https://github.com/koalaman/shellcheck/wiki/SC2001 | |
string=$1 | |
if [[ $string =~ \\ ]]; then | |
string=${string//\\/\\\\} | |
fi | |
if [[ $string =~ '&' ]]; then | |
string=${string//&/\\&} | |
fi | |
echo "$string" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment