The Requirement is to use JEXL to evaluate a java method from a file with a string parameter as below:
object.method("argument");
But, sometimes my String argument is written with different quotation marks:
object.method(«argument»);
According to JEXL documentation, I can use simple quote ' or double quote ", but not my french guillemet : https://commons.apache.org/proper/commons-jexl/reference/syntax.html#Literals
One way to do this will be to clean first my file, replacing all different quotation marks and use always the same.
Is there any other possible way to change this behavior?