in reply to Re^2: replacing "\L" character in strings
in thread replacing "\L" character in strings

The normal way to put a "backslash" in a character stream is to "back slash" the "backslash", i.e. with '\\', the first back slash means that the next char (which is a backslash) should be taken literally. In other words, convert single '\' to '\\'.
  • Comment on Re^3: replacing "\L" character in strings