-1

How can I use regular expressions in microedition?

Brian Webster
  • 30,033
  • 48
  • 152
  • 225
iberck
  • 2,372
  • 5
  • 31
  • 41

2 Answers2

0

J2ME lacks regular expression libraries. Please see the answers to Regular expressions in J2ME (which is about implementing regex) for some alternative implementations.

Community
  • 1
  • 1
Bill the Lizard
  • 398,270
  • 210
  • 566
  • 880
0

Regular expressions are not supported in Java ME. One reason could be that regular expressions have performance issues as described here. You can't afford compute intensive software on micro devices. Cheers

Adil Mehmood
  • 462
  • 3
  • 13