Skip to content

Instantly share code, notes, and snippets.

@letam
Last active June 12, 2020 13:55
Show Gist options
  • Save letam/855d7e45d8f8c97e4beac0ea515811be to your computer and use it in GitHub Desktop.
Save letam/855d7e45d8f8c97e4beac0ea515811be to your computer and use it in GitHub Desktop.
escape regex replacement string
#!/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