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

The question pretty much sums it up. Just want to run a regular expression match on a string in J2ME.

share|improve this question
It might be worth editing your question to clarify the fact that the regex package is not part of the Java ME distribution, so that nobody says "well just use the Pattern class...". – Jim Kiley Sep 23 '08 at 16:13
I would have thought that it being J2ME you'd be able to find a more optimzed way of doing it unless you're taking a regexp as input from a user. – PintSizedCat Sep 23 '08 at 16:13

4 Answers

JRegex will not run on CLDC device. Try this one: code.google.com/p/regexp-me/.

share|improve this answer

Will JRegex run in J2ME?

UPDATE: Based on Rory's comment, I recommend JRegex, then.

share|improve this answer
According to the site: JRegex is portable (runs under any version of java) – roryf Sep 23 '08 at 20:27

JRegex doesn't compile on J2ME (at least in the blackberry dev environment). I'm interested in a regex library as well but JRegex doesn't seem to work for this purpose.

share|improve this answer
1  
This isn't really an answer. Perhaps you meant to comment on one of the answers regarding JRegex? – Michael Donohue Feb 18 '12 at 22:15

It's hard to tell what runs on J2ME due to the extreme old age of J2ME's API support, but try Apache ORO. That's sufficiently old, crusty and obsolete that it may, if you're lucky, work on J2ME.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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