How to compare two strings with out Case sensitive ?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
How do you register the .Net Component or Assembly?
Why do we need url encoding?
What is interval time of GC in .net
version information of assembly consist of _________ values.
Differentiate an ADO.NET Dataset and an ADO Recordset with its functionality?
How many types of sessions are there?
What is web configuration file and how to use in web application
To which side ( server ? client) does the user input data validation occur? Explain the reasons for it?
What is validation in asp.net?
Can you explain page lifecycle in net?
Difference b/w casting and boxing?
What is the use of view state?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)