473,606 Members | 2,825 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Lowercase std::string compare?

Is there any builtin lowercase std::string compare? Right now I'm doing
this:

if ( _stricmp( AmmoTypeText.c_ str(), "GunBullet" ) == 0 )
AmmoType = Item_Ammo_GunBu llet;

Is there anything the standard library to do this? I'm not interested in
Boost until it becomes part of the standard.
May 11 '06 #1
4 24872

Jim Langston wrote:
Is there any builtin lowercase std::string compare? Right now I'm doing
this:

if ( _stricmp( AmmoTypeText.c_ str(), "GunBullet" ) == 0 )
AmmoType = Item_Ammo_GunBu llet;

Is there anything the standard library to do this? I'm not interested in
Boost until it becomes part of the standard.


I usually do it like:

string tmp = strToCompare;
transform(tmp.b egin(), tmp.end(), tolower);
if(tmp == "gunbullet" )
{
//more codes...
}

Which I agree is probably not the most efficient solution. I'd be happy
to know how I can improve that.

May 11 '06 #2
Jim Langston wrote:
Is there any builtin lowercase std::string compare? Right now I'm doing
this:

if ( _stricmp( AmmoTypeText.c_ str(), "GunBullet" ) == 0 )
AmmoType = Item_Ammo_GunBu llet;

Is there anything the standard library to do this? I'm not interested in
Boost until it becomes part of the standard.


Unfortunately, std::string lacks case insensitive compare.
Case-insensitive operations are locale dependant, and therefore require
a more complex functionality then the one described above.See:

http://www.gotw.ca/gotw/029.htm and
http://gcc.gnu.org/onlinedocs/libstd...ngs/howto.html

Assuming you limit yourself to single-byte (char) ASCII characters and
you don't change LOCALE settings, _stricmp is fine. If you do need
locale depend functions, take a look at the Strinx library:

http://strinx.sourceforge.net/strinx...ith-std-locale
which provides a set of locale-dependant functions for strings.

Good luck,
SS.

May 11 '06 #3

shablool wrote:
Unfortunately, std::string lacks case insensitive compare.
Case-insensitive operations are locale dependant, and therefore require
a more complex functionality then the one described above.See:


Actually it's the char_traits that performs the comparison, not the
std::basic_stri ng class.

You can use a specific char_traits in your strings to do such
comparisons.

transforming the whole string looks wrong algorithmically , as it means
you have "worst case scenario" on every string, i.e. the slowest result
of the comparison is either when the strings match or they differ on
the last character, in which case you need N comparisons, but a lot of
the time the comparison will fail on the first character. By
transforming the entire string to lowercase (or uppercase) your
algorithm will be O(N) every time (well you will be performing an
action on every character).

It would be therefore better to provide a single-character comparison
and use that.

I would like to see a case-insensitive comparison function in <locale>
which is where I think it belongs. There isn't one, although you can
write one based on the toupper that lives in locale. You can do it
based on single-character comparison (call the locale toupper or
tolower on both and compare them) and then you can do another one for a
sequence (std::compare with your predicate).

Difficult to know what header it should be in - it is both an algorithm
and locale based. You wouldn't want to put it in <algortihm> because it
has then has a dependency on <locale>. You could do it the other way if
you rewrite the compare and not use std::compare. The other alternative
would be to give it its own header so you only include what you use.

May 11 '06 #4
Relying on char_traits to implement a case insensitive string is wrong.
See: http://lafstern.org/matt/col2_new.pdf

Here is an implementation (from the Strinx library) which uses
std::locale, but not char_traits (although there is an assumption that
there exists operator== for CharT, which is obviously true for built-in
types char and wchar_t):

#include <locale>

// Case-insensitive compare of the first n characters of s1 and s2,
// using std::locale.
// Note: s1 and s2 are not necessarily null terminated strings.
template <typename CharT>
int icompare(const CharT* s1, const CharT* s2, size_type n, const
std::locale& loc)
{
const std::ctype<Char T>& facet = std::use_facet< std::ctype<Char T>
(loc);

const CharT* end = s1+n;
for (const CharT *p = s1, *q = s2; p != end; ++p, ++q)
{
const CharT c1 = *p;
const CharT c2 = *q;
if ( !(c1 == c2) && !(facet.toupper (c1) == facet.toupper(c 2)) )
{
return (int(c1 < c2) - int(c2 < c1));
}
}
return 0;
}

May 11 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
2611
by: Kian Goh | last post by:
Hello, I would like to replace all the occurrence of "(" and ")" in C++ std::string to "\(" and "\)". For example: string s = "(abc)|(toto)|(lala)" will be become "\(abc\)|\(toto\)|\(lala\)"
2
1792
by: Susan Baker | last post by:
Hi, I have declared a class MyClass in a header file MyClass.h I have then gone onto define the class in MyClass.cpp. This is (roughly) what the definition (.cpp) file looks like: #include "BaseHeader.h" /****************************************************/ /* Constructors/Destructor */
3
17097
by: jl_post | last post by:
Hi, I recently wrote two benchmark programs that compared if two strings were equal: one was a C program that used C char arrays with strcmp(), and the other was a C++ program that used std::strings with operator==(). In both programs, the first string consisted of one million characters (all the letter 'a'). The second string was always one character longer than the first string (with the letter 'a' for all the
8
4803
by: Jason Heyes | last post by:
If s is a std::string, does &s refer to the contiguous block of characters representing s?
15
6886
by: roberts.noah | last post by:
Are there any decent benchmarks of the difference between using c strings and std::string out there? Google isn't being friendly about it. Obviously this would be dependant on different implementations but I don't care. I would be happy to find ANY comparison at this point if it was valid and semi scientifically done.
10
9046
by: lovecreatesbea... | last post by:
Is it correct and safe to compare a string object with "", a pair of quotation marks quoted empty string?If the string object: s = ""; does s contain a single '\'? Is it better to use std::string::size or std::string::empty to deal with this condition? Thank you. string s = ""; if (s == ""); if (s.size == 0); if (s.empty());
4
11219
by: daroman | last post by:
Hi Guys, i've problem with my small C++ programm. I've just small template class which represetns a array, everything works fine up to combination with std::string. I did tried it with M$ VC++ and with GCC (Cygwin and Linux) and my problem is when i try do this int main(int argc, char **argv) { array<std::stringa(10); a = "Huhuhu"; <--- with gcc i got a crash !
14
24255
by: Mosfet | last post by:
Hi, what is the most efficient way of doing a case insensitive comparison ? I am trying to write a universal String class and I am stuck with the case insensitive part : TCHAR is a char in MultiByte String env (MBCS) and wchar_t if UNICODE #if defined(WIN32) || defined(UNDER_CE)
16
3657
by: yu_kuo | last post by:
Is there any comparison data on perfomance difference between std::string and c style string? Or maybe if there are source code which could be used to measuer on different compiler/platform, in a systematic way?
0
7981
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8467
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
6803
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
5994
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5470
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
3952
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4011
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2458
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1574
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.