Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im trying to compare words for equality, and the case [upper and lower] is irrelevant. However PHP does not seem to agree!

Any ideas as to how to force PHP to ignore the case of words while comparing them ??

Any help appreciated!

$arr_query_words = array( "hat","Cat","sAt","maT" );
// for each element in $arr_query_words -
for( $j= 0; $j < count( $arr_query_words ); $j++ ){

    // Split the $query_string on "_" or "%" :
    $story_body = str_replace( $arr_query_words[ $j ],
         '<span style=" background-color:yellow; ">' . $arr_query_words[ $j ] . '</span>',
               $story_body );

// --- This ONLY replaces where the case [upper or lower] is identical ->
}

Is there a way to carry out the replace even if the case is different???

Apologies for the vagueness of the original question.

Donal

share|improve this question
I've updated my answer to hopefully answer what you were trying to ask! – Dominic Rodger Oct 30 '09 at 17:01

3 Answers

up vote 31 down vote accepted

Use str_ireplace to perform a case-insensitive string replacement (str_ireplace is available from PHP 5):

$story_body = str_ireplace($arr_query_words[$j],
   '<span style=" background-color:yellow; ">'. $arr_query_words[$j]. '</span>',
    $story_body);

To case-insensitively compare strings, use strcasecmp:

<?php
$var1 = "Hello";
$var2 = "hello";
if (strcasecmp($var1, $var2) == 0) {
    echo '$var1 is equal to $var2 in a case-insensitive string comparison';
}
?>
share|improve this answer
Good to know :) I have always been doing strtolower($var1) == strtolower($var2) to do case insensitive comparison – Aishwar Oct 30 '09 at 16:37
Exactly how I'd do it. For regular string comparison I always use it's case sensitive brother 'strcmp' you can never be too careful with PHP's loose typing. – Phil Carter Oct 30 '09 at 16:40
1  
Depending on what you are comparing you might want to add a trim to clear trailing whitespace. if(strcasecmp(trim($var1), trim($var2)) == 0) {} – Ryan Schumacher Oct 30 '09 at 16:42
1  
If you are going to do strtolower method, use strcmp(mb_strtolower($var1), mb_strtolower($var2)) to take in consideration multi-byte strings. – Ryan Schumacher Oct 30 '09 at 16:44

strcasecmp

share|improve this answer

You can also use this method which might be easier to remember

if(strtolower($var1) == strtolower($var2)) {
    // Equals, case ignored
}

You might want to trim the values like so

if(strtolower(trim($var1)) == strtolower(trim($var2))) {
    // Equals, case ignored and values trimmed
}

Hope this helps

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.