Pregunta

I am working on Text Processing Project. Where I need to do many operaition on text provided to me. Like finding substring in the text (Using Regex), deleting garbage text (Using Exact or Regex match), Splitting Text into multiple parts. Currently I am using Java for this purpose. Just want to understand is Java most suitable language for such things or I should use some other language.

¿Fue útil?

Solución

It's opinion based, but I'd say one language is as good as another for this. There are some great java libraries for text parsing. I've been using the Guava Joiner, Splitter and Charmatcher classes a lot recently for similar things. https://code.google.com/p/guava-libraries/

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top