Re: [json-lib-user] Conversion bug
Brought to you by:
aalmiray
|
From: Elyes L. <leh...@en...> - 2011-06-14 11:54:16
|
On Tue, 14 Jun 2011 13:20:20 +0200, Elyes Lehtihet wrote:
> Hi,
> First of all, thanks for this tool, found it very useful.
> We noticed a little bug in the way it handles the following
> conversion to JSON from a String:
> What should be converted to a JSON Object :
> "regexp":"[0-9]{1,6}[a-zA-Z]"
> is converted (truncated) to JSON-ARRAY - "regexp":["0-9"]
> Regards,
> -EL
Same result for the follwing String:
"[0-9]{9,10}[a-zA-Z0-9]" --> ["0-9"]
|