SQL PHP HTML ASP JavaScript articles and free scripts to download
 

Case sensitive string comparison

Case sensitive string comparision can be done by using strcmp function in PHP. This function returns < 0 if first string is less than second string, returns > 0 if first string is greater than second string and returns 0 if both the strings are equal.

For a case in sensitive string comparison use strcasecmp function

Here is a sample code using strcomp function to check two strings.





$str1="Hello World";
$str2="hello world";
echo strcmp($str1,$str2);
if(strcmp($str1,$str2)==0){
echo "Both strings are matching";
}else{
echo "Both strings are different ";
}




Post Comment This is for short comments only. Use the forum for more discussions.
Name
Email( not to be displayed)Privacy Policy
1+2=This is to prevent automatic submission by spammers. Please enter the result of the sum as asked


Join Our Email List
Email:  
For Email Newsletters you can trust
String Functions
PHP Sections