6 ms·
Many programming languages have a function for that to do that for you... In Perl, it's called quotemeta (qw, qq and family, too), in Python and Ruby it's .esc
by Su-Shee 13y ago
Many programming languages have a function for that to do that for you...
In Perl, it's called quotemeta (qw, qq and family, too), in Python and Ruby it's .escape... and there's always \Q ... \E to use...
I'm sure others have similar methods/functions.