This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes HTML, CSS and JavaScript and the fly likes compare strings case insensitive? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply Bookmark "compare strings case insensitive?" Watch "compare strings case insensitive?" New topic
Author

compare strings case insensitive?

reubin haz
Ranch Hand

Joined: May 12, 2005
Posts: 287
I want to compare and search strings case insensitively. But I only see code that use indexOf() or comparison signs for comparing, which is case sensitive. Is there any methods or ways to do the comparison which is case insensitive?


SCJA, SCJP5.0, SCBCD, SCWCD
Yuriy Fuksenko
Ranch Hand

Joined: Feb 02, 2001
Posts: 413
you convert both string to upper (or lower) case and compare
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: compare strings case insensitive?
 
Similar Threads
Why 2 interfaces Comparable and Comparator?
Not case sensitive boolean
"foo".equals(foo) vs foo.equals("foo")
is the search case sensitive?
Collections key comparison in case-insensitive