How can I use regular expressions in microedition?
            Asked
            
        
        
            Active
            
        
            Viewed 381 times
        
    -1
            
            
        - 
                    http://stackoverflow.com/questions/462048/regular-expressions-in-j2me – jmj Oct 13 '10 at 10:03
2 Answers
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
 
    