Hello,

I have a small, (maby big) problem.

Im writing a search script for my site, and wand to do some replacing of words.

I have a string that contains for example this :
Test this is a smal test script line.

Now i have a search patern :
test

What i want to do is this.
Test and test must be replased by <b>Test</b> and <b>test</b>

Thus al (case insensative) matches to test must be converted to bold words.

I have tested a lot, and the best result sovar is this code :
$head =~ s/$replace/<u>$replace<\/u>/gi;

But this code replases Test to <b>test</b> it is realy convertet to the original search patern.

Any help whit this is very welcome.

Thanks,
Eelco Alosery

Reply via email to