Changes between Initial Version and Version 1 of Ticket #1930, comment 10
- Timestamp:
- 08/19/22 14:26:11 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1930, comment 10
initial v1 1 I think there is a disconnect here. Maximis 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!1 I 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! 2 2 3 3 So it is ''correct'' that `$1` is unsecaped. Good.