Changes between Initial Version and Version 1 of Ticket #1930, comment 10


Ignore:
Timestamp:
08/19/22 14:26:11 (20 months ago)
Author:
JoshMcCullough@…

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1930, comment 10

    initial v1  
    1 I think there is a disconnect here. Maxim is talking about "why is my variable unescaped" when it comes from a regex location match. Well, it ''should'' be unescaped, because you wouldn't want to have your regex include escaped characters. You'd run into constant issues with that!
     1I think there is a disconnect here. "cawoodm" is talking about "why is my variable unescaped" when it comes from a regex location match. Well, it ''should'' be unescaped, because you wouldn't want to have your regex include escaped characters. You'd run into constant issues with that!
    22
    33So it is ''correct'' that `$1` is unsecaped. Good.