Hi, Erlang team.<br>I  want to add slashes before some characters in a string - single quote, double quote, backslash.<br>I have not found any function that implement this, therefore I use regexp:gsub function, but I have a trouble with backslashes:<br>
 <br><i>69> regexp:gsub("qwert\\asdf", "\\", "\\\\").<br>{error,{unterminated,"\\"}}</i><br><br>May you help me, please?<br>