Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking a tool which take source code as a input and tokenize them as a operator, keyword, class, function, member variable, comments and parameter. Tool should take parsing logic from configuration file(like how to detect & parse comments, functions, classes).

For example converting c++ source code to c# or converting XML settings file to INI file format.

share|improve this question
5  
You should go over your questions and accept some answers, so that people will answer your questions in the future. – user647772 Oct 10 '12 at 7:06

closed as not a real question by sberry, inspectorG4dget, casperOne Oct 15 '12 at 11:50

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Each language is different. Are you looking for a tool which allows you to write tokenisers, or do you want to use the ones already written for each of your language?

For example, writing an XML parser is non-trivial -- but Python has lxml which already does it, and allows you to navigate the parse tree elegantly.

share|improve this answer

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