Mateusz Charytoniuk
Mateusz Charytoniuk

Reputation: 1897

Java alternative to PHP Tokenizer

Is there any Java alternative to PHP Tokenizer?

http://php.net/manual/en/book.tokenizer.php

Edit: I mean Java class that parses Java like PHP Tokenizer parses PHP.

Upvotes: 1

Views: 273

Answers (1)

I quickly scanned the documentation you linked to. It looks like functionality for parsing PHP code.

If that is indeed what you are looking for, you might find the JavaParser project useful. It contains functionality for parsing Java source code.

This page contains some usage examples.

Upvotes: 3

Related Questions