/**
* @param args
*/
public static void main(String[] args) {
String sText = "userTruc.maTable[variable.attribute == false | (toto > 18 & userTruc[*].family in [\"toto\", \"titi\"])].tableau[length(texte)].name";
ParsingTools stream = new ParsingTools(sText);
try {
System.out.println(sText);
DottedExpression expr = parseDottedExpression(stream);
System.out.println(expr.toString());
} catch (IOException e) {