I have to test this some more, but this could be useful as a utility method when dealing with string interpolation: ```perl # escapes enhanced text for Gnuplot my $escape_enhtext = sub { shift =~ s,([{}^_@&~\\]),\\$1,gr }; ```