Renato created JEXL-355:
---------------------------
Summary: Conditional operation fails
Key: JEXL-355
URL: https://issues.apache.org/jira/browse/JEXL-355
Project: Commons JEXL
Issue Type: Bug
Affects Versions: 3.2.1, 3.1
Reporter: Renato
I'm evaluating time interval and I noticed a strange behaviour when, for
example, I've tried to create an expression like this:
{code:java}
new JexlBuilder().create().createExpression("0900 >= 0900"){code}
this fails with the following message:
??org.apache.commons.jexl3.JexlException$Parsing: :2 parsing error in '900'??
?? at
org.apache.commons.jexl3.JexlEngine.createExpression(JexlEngine.java:335)??
?? at
it.bookingexpert.be.bebeeval.logic.jexl.JexlEvaluator.internalEval(JexlEvaluator.java:39)??
?? ... 27 more??????
as well as this one
{code:java}
new JexlBuilder().create().createExpression("0800 >= 0800")
{code}
but won't if I replace {{0800 }}with one of the following
{{0100, 0200, 0300, 0400, 0500, 0600, 0700}}
{{If I remove the first 0 in all the previous expressions, then everything will
work.}}
--
This message was sent by Atlassian Jira
(v8.20.1#820001)