persvr / rql

Resource Query Language
http://www.persvr.org/
267 stars 49 forks source link

Unable to parse "/"(forward slash) in RQL #83

Open shubhi21singh opened 4 years ago

shubhi21singh commented 4 years ago

I tried parsing query="and(eq(streetSuffix,/))" using new RQLParser().parse(query); it results in "and(eq(streetSuffix,[]))" I tried "and(eq(streetSuffix,\/))" but it results in and(eq(streetSuffix,())) Can anyone help me escaping the forward slash (/) ??