I want to check for the number of occurences of a particular character in a string ignoring case. Is it possible to use equalsIgnoreCase(),meant for strings? I tried something like: word1.charAt(index).equalsIgnoreCase('a') but it gives error (char can not be dereferenced). Please comment. Liza
Joseph Russell
Ranch Hand
Joined: Jan 08, 2001
Posts: 290
posted
0
I'll answer your question but to restate what Marylin already said in your thread about interfaces this question doesn't have anything to do with the Cattle Drive assignments. It would be better for you to put them in Java In General( beginner ). This might be a little sloppy but it works. I'd appreciate some suggestions as to how to make it look better.
Maybe this should be moved to Java in General? Let me know if it does get moved. Thanks, Joe [This message has been edited by Joseph Russell (edited March 27, 2001).]
Marilyn de Queiroz
Sheriff
Joined: Jul 22, 2000
Posts: 9033
10
posted
0
equalsIgnoreCase() compares two Strings ignoring case differences in the two Strings. But, you could do something like this:
I'm moving this to Java in General (Beginners)
JavaBeginnersFaq "Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.