I would like to find out if my string has = & & sequence in it. If yes then I would like to encode second &. How using java regex can I find it?
My string is something like this:
a=cat&b=dog&cat&c=monkey
Thanks Chaitanya
|
Like Mosty and Ted suggested, perhaps the best way to go at this is by detecting and escaping the '&'. However, if you want a single regex to do the work for you, here it is:
|
|||||||
|
|
Why don't you just split it? First split it by "&", then take the second element |
|||
|
|
|
You can use this format:
I don't know what you mean by "encode the &" though. Could you clarify? |
|||
|
|
It would be easier to escape the
This is likely to be faster than regular trying to do this with regular expressions. |
|||
|
|
=&&in the string, or can there be other characters between the=,&, and the second&? – Ted Hopp Oct 3 '11 at 2:47