How to compare two strings with out Case sensitive ?

Answers were Sorted based on User's Feedback



How to compare two strings with out Case sensitive ?..

Answer / minhajul islam

string str1="Hello1";
string str2="Hello2";

String.Compare(str1,str2,true)

//true if you want compare two string without case
sensative and false if you want to case sensative.

//It will return Zero if compare as equal and 1 if not.

Is This Answer Correct ?    16 Yes 2 No

How to compare two strings with out Case sensitive ?..

Answer / navin.cp

Here is the code that solve ur problem:

string str = "virtual";
if (str.Equals("virtual"))
{
// your code here....
}

Is This Answer Correct ?    8 Yes 6 No

How to compare two strings with out Case sensitive ?..

Answer / manu

with
String.Compare(string a,string b) [result 0 only when it
is equal- since it compares by subtracting ascii of b from
ascci of a)
or
String.Equals(string a,string b) {true if it is equal]
we can achieve the same

Is This Answer Correct ?    5 Yes 6 No

How to compare two strings with out Case sensitive ?..

Answer / sekar thangavel

sting.Equals(string a,string b)

Explanation:
Determines whether two specified system.string objects have
the same values,a parameter specifies the culture,case and
sort rules used in the comparison

Is This Answer Correct ?    4 Yes 7 No

Post New Answer

More ASP.NET Interview Questions

We Only Know The Total Number Of Feet In The Farmyard. Write A Program that will compute the total number of rabbits and chickens in the farmyard. Assume number of feet in the farmyard are 40. how many rabbits and chickens are?

0 Answers  


Explain what is clr?

0 Answers  


What is caching? What are different ways of caching in asp.net?

0 Answers  


what is purpose of xml control in standard controls of asp.net

1 Answers  


Explain the use of fragment caching.

0 Answers  






which is best possible way to add data source to data grid when the data is huge(10 lack recored)how to edit a perticular row

3 Answers   Airtel, Aviva,


Will session work if cookies is disabled?

0 Answers  


What is data binding in asp net?

0 Answers  


What would be the salary of an Asp.net developer with 1 and half year experience in indian rupees..??

5 Answers  


Explain the advantages of asp.net.

0 Answers  


What is owin authentication?

0 Answers  


What are tuples?

0 Answers  


Categories