What is the best way of doing case insensitive string comparison in C++ with out transforming a string to all upper or lower case?
Also, what ever methods you present, are they Unicode friendly? Are they portable?
|
Boost includes a handy algorithm for this:
|
|||||||||||||||||||||
|
|
Take advantage of the standard
The details are on Guru of The Week number 29. |
|||||||||||||||
|
|
Are you talking about a dumb case insensitive compare or a full normalized Unicode compare? A dumb compare will not find strings that might be the same but are not binary equal. Example:
Are all equivalent but they also have different binary representations. That said, Unicode Normalization should be a mandatory read especially if you plan on supporting Hangul, Thaï and other asian languages. Also, IBM pretty much patented most optimized Unicode algorithms and made them publicly available. They also maintain an implementation : IBM ICU |
||||
|
|
|
If you are on a POSIX system, you can use strcasecmp. This function is not part of standard C, though, nor is it available on Windows. This will perform a case-insensitive comparison on 8-bit chars, so long as the locale is POSIX. If the locale is not POSIX, the results are undefined (so it might do a localized compare, or it might not). A wide-character equivalent is not available. On Windows, you can use the _stricmp or _wcsicmp functions to perform case-insensitive comparison. These function do use the current locale information, and the wide-character version is available. However, these are obviously Windows-specific. C and C++ are both largely ignorant of internationalization issues, so there's no good solution to this problem, except to use a third-party library. Check out IBM ICU (International Components for Unicode) if you need a robust library for C/C++. ICU is for both Windows and Unix systems. |
||||
|
|
|
My first thought for a non-unicode version was to do something like this:
|
|||
|
|
|
The Boost.String library has a lot of algorithms for doing case-insenstive comparisons and so on. You could implement your own, but why bother when it's already been done? |
|||||||
|
|
The trouble with boost is that you have to link with and depend on boost. Not easy in some cases (e.g. android). And using char_traits means all your comparisons are case insensitive, which isn't usually what you want. This should suffice. It should be reasonably efficient. Doesn't handle unicode or anything though.
|
|||||||
|
|
Visual C++ string functions supporting unicode: http://msdn.microsoft.com/en-us/library/cc194799.aspx the one you are probably looking for is _wcsnicmp |
|||||
|
|
boost::iequals is not utf-8 compatible in the case of string. You can use boost::locale.
|
|||
|
|
|
Assuming you are looking for a method and not a magic function that already exists, there is frankly no better way. We could all write code snippets with clever tricks for limited character sets, but at the end of the day at somepoint you have to convert the characters. The best approach for this conversion is to do so prior to the comparison. This allows you a good deal of flexibility when it comes to encoding schemes, which your actual comparison operator should be ignorant of. You can of course 'hide' this conversion behind your own string function or class, but you still need to convert the strings prior to comparison. |
||||
|
|
|
I wrote a case-insensitive version of char_traits for use with std::basic_string in order to generate a std::string that is not case-sensitive when doing comparisons, searches, etc using the built-in std::basic_string member functions. So in other words, I wanted to do something like this.
...which std::string can't handle. Here's the usage of my new char_traits:
...and here's the implementation:
|
|||||||||||
|
|
I'm trying to cobble together a good answer from all the posts, so help me edit this: Here is a method of doing this, although it does transforming the strings, and is not Unicode friendly, it should be portable which is a plus:
From what I have read this is more portable than stricmp() because stricmp() is not in fact part of the std library, but only implemented by most compiler vendors. To get a truly Unicode friendly implementation it appears you must go outside the std library. One good 3rd party library is the IBM ICU (International Components for Unicode) Also boost::iequals provides a fairly good utility for doing this sort of comparison. |
|||||||
|
|
FYI, strcmp() and stricmp() are vulnerable to buffer overflow, since they just process until they hit a null terminator. It's safer to use strncmp() and strnicmp(). |
|||||||
|
|
You can use strcasecmp on Unix, or stricmp on Windows. One thing that hasn't been mentioned so far is that if you are using stl strings with these methods, it's useful to first compare the length of the two strings, since this information is already available to you in the string class. This could prevent doing the costly string comparison if the two strings you are comparing aren't even the same length in the first place. |
|||
|
|
|
I've had good experience using the International Components for Unicode libraries - they're extremely powerful, and provide methods for conversion, locale support, date and time rendering, case mapping (which you don't seem to want), and collation, which includes case- and accent-insensitive comparison (and more). I've only used the C++ version of the libraries, but they appear to have a Java version as well. Methods exist to perform normalized compares as referred to by @Coincoin, and can even account for locale - for example (and this a sorting example, not strictly equality), traditionally in Spanish (in Spain), the letter combination "ll" sorts between "l" and "m", so "lz" < "ll" < "ma". |
||||
|
|
|
Just a note on whatever method you finally choose, if that method happens to include the use of
|
|||
|
|
|
As of early 2013, the ICU project, maintained by IBM, is a pretty good answer to this. ICU is a "complete, portable Unicode library that closely tracks industry standards." For the specific problem of string comparison, the Collation object does what you want. The Mozilla Project adopted ICU for internationalization in Firefox in mid-2012; you can track the engineering discussion, including issues of build systems and data file size, here: |
|||
|
|
std::stricmp. Otherwise, read what Herb has to say. – Konrad Rudolph Aug 26 '08 at 12:17