Ask a Question related to PHP Development, Design and Development.
-
-= Patrick =- #1
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
-
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... -
#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: ... -
[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: -
case-insensitive sort
How I can implement case-insensitive sort without use function-based index? -
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... -
Andy Hassall #2
Re: Case-insensitive str_replace
On Wed, 06 Aug 2003 13:21:13 GMT, "Ian.H [dS]" <ian@WINDOZEdigiserv.net> wrote:
[url]http://uk2.php.net/str_ireplace[/url]>What's wrong with str_ireplace() ?
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



Reply With Quote

