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

Home Posts Topics Members FAQ

String Comparison

Hello,
In comparing strings, is it just as well to use...

string1 == string2

or is it better for any reason to use the String.Compare of String.Equals?

Thanks
Nov 17 '05 #1
4 16050
Randy,

The == operator is defined in terms of String.Equals:

http://msdn.microsoft.com/library/de...alitytopic.asp

If you just need to test whether two strings are equal or not, it's simpler
and clearer to use == than Compare().

Compare() is to be used when you need to check whether a string is "less
than", "equal" or "greater than" other following certain sort criteria for
characters:

http://msdn.microsoft.com/library/de...classtopic.asp

Regards - Octavio
"Randy" <te**@temp.co m> escribió en el mensaje
news:ex******** ******@TK2MSFTN GP14.phx.gbl...
Hello,
In comparing strings, is it just as well to use...

string1 == string2

or is it better for any reason to use the String.Compare of String.Equals?

Thanks

Nov 17 '05 #2

1. if (string1 ==string2 ) will perfrm a case-sensitive test for equality
between two strings.

2. string.Compare( string1,string2 ) will perform case-insensitive test
between two strings.
Example int AA = string.Compare( "man","man" ) will return 0 which means they
are equal

Whereas int AA =string.compare ("man","MAN" ) will return a negative number
which mean they are different.

Hope this helps
Yonas
"Randy" <te**@temp.co m> wrote in message
news:ex******** ******@TK2MSFTN GP14.phx.gbl...
Hello,
In comparing strings, is it just as well to use...

string1 == string2

or is it better for any reason to use the String.Compare of String.Equals?

Thanks

Nov 17 '05 #3
Yonas Hagos <y_*****@hotmai l.com> wrote:
1. if (string1 ==string2 ) will perfrm a case-sensitive test for equality
between two strings.
Yes.
2. string.Compare( string1,string2 ) will perform case-insensitive test
between two strings.
No!
Example int AA = string.Compare( "man","man" ) will return 0 which means they
are equal

Whereas int AA =string.compare ("man","MAN" ) will return a negative number
which mean they are different.


That goes against what you said - you said that string.Compare performs
a case-*insensitive* test, but "man" and "MAN" differ only in case. If
string.Compare were case-insensitive, it would return 0.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 17 '05 #4
"Randy" <te**@temp.co m> wrote in message
news:ex******** ******@TK2MSFTN GP14.phx.gbl...
Hello,
In comparing strings, is it just as well to use...

string1 == string2

or is it better for any reason to use the String.Compare of String.Equals?


Assuming you want a case-sensitive comparison :

string1 == string2 is ok, as long as both sides are strings
(and not objects) at compile time.

eg.
==
string s1 = "abc";
string s2 = s1.ToLower();

if (object.Referen ceEquals(s1, s2))
MessageBox.Show ("string references equal");
else
MessageBox.Show ("string references not equal"); // A

if (s1 == s2)
MessageBox.Show ("(s1 == s2) is true"); // B
else
MessageBox.Show ("(s1 == s2) is false");

object o1 = s1;
object o2 = s2;

if (o1 == o2)
MessageBox.Show ("(o1 == o2) is true");
else
MessageBox.Show ("(o1 == o2) is false"); // C

if (String.Equals( o1, o2))
MessageBox.Show ("(String.Equal s) is true"); // D
else
MessageBox.Show ("(String.Equal s) is false");
==
When run, the code above outputs
(at least on my PC) the lines marked at
A, B, C and D.
Watch out for tests like (o1 == o2),
since a reference comparison is performed.
When both sides are objects, IMO, it is
safer to use one of the String.Equals
or object.Equals variants.

HTH,
Stephen

Nov 17 '05 #5

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

Similar topics

10
23376
by: David Graham | last post by:
Hi I have been busy going through the last weeks postings in an attempt to absorb javascript syntax (I guess it's not possible to just absorb this stuff in a passive way - I'm getting way out of my depth with most of the posts, I will buy a good book and take some online tutorials) Anyway, I think I almost understand one of Mr Nielsen's posts on form validation. It all centers around whether I am interpreting an empty string correctly -...
2
2538
by: Neil Zanella | last post by:
Hello, Consider the following program. There are two C style string stack variables and one C style string heap variable. The compiler may or may not optimize the space taken up by the two stack variables by placing them at the same address (my g++ compiler does this). Therefore the output of the given C program is compiler dependent. What is worse, the program does not do what its writer most likely intended, since, std::set's find()...
8
2787
by: Grant Wagner | last post by:
I'm a bit confused by String() (typeof 'string') vs new String() (typeof 'object'). When you need to access a method or property of a -String-, what type is JavaScript expecting (or rather, what should you provide), a -String object- or a -string-? Given the following benchmark: var t = (new Date()).getTime(); for (var ii = 0; ii < 100000; ++ii) { var x = (String('hi')).charAt(0); // typeof 'string'
51
8253
by: Alan | last post by:
hi all, I want to define a constant length string, say 4 then in a function at some time, I want to set the string to a constant value, say a below is my code but it fails what is the correct code? many thx!
46
5126
by: yadurajj | last post by:
Hello i am newbie trying to learn C..I need to know about string comparisons in C, without using a library function,...recently I was asked this in an interview..I can write a small program but I was told that wouldn't it be wise to first get the length of the strings..if it doesn't match then they are not the same..I agreed...then he said..but again that would be an overhead first measuring the length...and then doing a character by...
5
657
by: MaSTeR | last post by:
Can anyone provide a practical short example of why in C# I shouldn't compare two strings with == ? If I write this in JAVA String string1 = "Widget"; if (string1 == "Widget") System.Console.WriteLine("String1 Equal.");
4
7177
by: Peter Kirk | last post by:
Hi I am looking at some code which in many places performs string comparison using == instead of Equals. Am I right in assuming that this will in fact work "as expected" when it is strings involved? By "as expected" I mean that as long as the strings are instantiated using string literals, then == and Equals are the same. string s1 = "xxx";
4
24872
by: Jim Langston | last post by:
Is there any builtin lowercase std::string compare? Right now I'm doing this: if ( _stricmp( AmmoTypeText.c_str(), "GunBullet" ) == 0 ) AmmoType = Item_Ammo_GunBullet; Is there anything the standard library to do this? I'm not interested in Boost until it becomes part of the standard.
26
3794
by: Neville Lang | last post by:
Hi all, I am having a memory blank at the moment. I have been writing in C# for a number of years and now need to do something in VB.NET, so forgive me such a primitive question. In C#, I test whether a string has a value or not by the following syntax: if (thisString.Trim() == "") {
6
4333
by: aznimah | last post by:
hi, i'm work on image comparison. i'm using the similarity measurement which i need to: 1) convert the image into the binary form since the algorithm that i've use works with binary data for the computation 2) compare the string binary data to get the similarity or dissimilarity result. The problem is, i already done with the image (jpg) conversion to binary and also try the algorithm structure in C# language, but i having a problem to...
0
8016
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8440
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
8431
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8306
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6773
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
5966
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
5466
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();...
1
2448
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
1557
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.