We are making validators of expressions which are loaded in a database. The challenge is to take that expression, for example:
Objeto.getNombreFuncion("123").getAttribute("Nombre_Etiqueta") &&
Objeto.getNombreFuncion("Otra_Etiqueta").getAttribute("Nombre_Etiqueta")
and separate everything that is between quotation marks, it should look something like this:
123
Nombre_Etiqueta
Otra_Etiqueta
Nombre_Etiqueta
We are thinking about using python, but any language is welcome. Thanks