Re: [Resin-interest] regexp with literal question-mark

2007-01-03 Thread Bernard Bernstein
On Jan 3, 2007, at 4:55 PM, Bernard Bernstein wrote: > > regexp="/here/.*/([0-9]+)\??(.*)" > target="/there.jsp?id=$1&$2" >/> > > > or > what seems more likely, the query-string is parsed out and not > available from that variable. I have some more evidence that it is the

[Resin-interest] regexp with literal question-mark

2007-01-03 Thread Bernard Bernstein
I have this rewrite rule: Which is supposed to do this: when resin sees this: /here/12345?x=1 it should forward to this: /there.jsp?id=12345&x=1 but actually it is forwarding to this: /there.jsp?id=12345& It seems that the \? isn't recognizing a literal question-mark, or what seems