Case-insensitive str_replace

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default Case-insensitive str_replace

    Hi,
    I'm trying to replace strings in a body of html. These strings may
    contain spaces. str_replace works perfectly, except that it is
    case-sensitive. I've tried using eregi_replace, but I think there is
    something wrong with my regex's. Here is my current code:

    $bword may contain something like: "testing testing 123"

    $bword = trim ($bword); //Remove trailing newlines
    str_replace (' ', '[\s]', $bword); //Change spaces to [\s]
    $urlhtml = eregi_replace ("[\s]($bword)[\s]", $replacecode, $urlhtml);

    It seems to pick up some words, but not all......
    -= Patrick =- Guest

  2. Similar Questions and Discussions

    1. case insensitive REPLACE(...)?
      Hi, I need to search and replace a web address, but the original address could be in any case. Is there a way of doing a case insensitive search...
    2. #23026 [Com]: Make Zend case-sensitive (classes, functions, remove case-insensitive)
      ID: 23026 Comment by: nvivo at mandic dot com dot br Reported By: mfischer@php.net Status: Open Bug Type: ...
    3. [PHP] case insensitive sort
      Ok. Now I REALLY feel like an idiot. Thanks so much for your help. Steve At 05:46 PM 8/26/2003 +0200, you wrote:
    4. case-insensitive sort
      How I can implement case-insensitive sort without use function-based index?
    5. Searching CLOBS case insensitive
      Basically, you create an index with indextype ctxsys.context specifying necessary parameters to it, something like this: create index ctx_mytable...
  3. #2

    Default Re: Case-insensitive str_replace

    On Wed, 06 Aug 2003 13:21:13 GMT, "Ian.H [dS]" <ian@WINDOZEdigiserv.net> wrote:
    >What's wrong with str_ireplace() ?
    [url]http://uk2.php.net/str_ireplace[/url]

    str_ireplace
    (PHP 5 CVS only)

    That's what ;-p

    --
    Andy Hassall (andy@andyh.co.uk) icq(5747695) ([url]http://www.andyh.co.uk[/url])
    Space: disk usage analysis tool ([url]http://www.andyhsoftware.co.uk/space[/url])
    Andy Hassall Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139