I'm about to make kind of converter from math expression into java code.

Are there any existing converters?

Which technologies should I use?

I have already investigated XTEXT, but I think it's a too huge thing to solve such problems, may be I could do it with a simple translator.

It could be almost useful to look at existing programming language converters...

I do apretiate any help.

link|improve this question
1  
Could you edit your original question to include a concrete example of what you're trying to translate? (example input & desired output) – Bart Kiers Mar 15 '11 at 15:48
feedback

2 Answers

Maybe you shoul have a look at antlr. I don't know if this is "overkill" but i think you can use it for your purpose.

You can parse your expressions with it and do whatever you want.

link|improve this answer
feedback

You'll need to be able to define both:

  • The language you are converting from
  • The target data structure (e.g. a executable parse tree of Java objects?)

As long as you are able to do both of the above, then you should be able to create a parser using on of the many good parser generation toolkits available.

jparsec might be a good bet? It has the advantage of being a parser combinator library, which means you can create parsers without the complexity of generating external parser source files etc. There is also a simple mathematical expression parser example available..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.