Hello ppl.
I have a question about this function ereg_replace
Can I replace 3 words at the same time, like in my exemple...
This is the string from scorpion.dat:
There: 8
*C ; </
And this is the script I made
$s = fread($fh, filesize("scorpion.dat"));
echo ereg_replace( ":", " are", $s );
There are 8*C ;</
What I want is to raplece the * with ° and ; with nothing
I want to see this result
There are 8°C </