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 |
Can we store object in viewstate?
I have a component with 3 parameter and deployed to client side now i changed my dll method which takes 4 parameter.How can i deploy this without affecting the clent?s code ?
1 Answers Microsoft, Satyam, Wipro,
To bind columns manually which tags do you need to add within the asp:datagrid ?
What are the various authentication mechanisms in ASP.NET ?
1 Answers Digital GlobalSoft, Satyam,
What does asp in asp.net stand for?
What is a bubbled event?
What are Http handler ?
6 Answers Accenture, BirlaSoft, Satyam, Syntel,
Why is asp.net so popular?
Can you explain the importance of finalize method in .net?
i want to develope a page for online test using asp.net with c#.net. so, how to insert the questions in the database sqlserver2000 and how to pick the questions randomly when user login for test. plz send the code for this....
3 Answers Chaitanya, Crysalis, CTS, HCL, Sein Infotech, TCS,
What is & in a url?
With example & diagram explain AutoPostBack.