vote up 0 vote down star

Hello, Friend

I have a one textField in J2ME.

I want to search from a textfile using that textField Value then what will be the logic for that ?

Suppose if i enter abc in textField

then logic should return abc by comparing it from textfile field.

flag

2 Answers

vote up 0 vote down

J2ME doesn't contain a standard regular expression API.

So, either write your own or use an existing library.

If you don't actually need special characters like wildcards, java.lang.String.indexOf(String) is your friend.

If your file is too big and you need to read it one buffer at a time, just be careful that the end of a buffer isn't the beginning of your search string. String.startsWith() will let you take care of that case.

link|flag
vote up 0 vote down

Maybe you could use something like Jakarta Regex or other third parties?

link|flag

Your Answer

Get an OpenID
or

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