I'm cleaning a string removing strings in this array:
$regex = array("subida", " de"," do", " da", "em", " na", " no", "blitz");
And this is the str_replace i'm using:
for($i=0;$i<8;$i++){
$twit = str_replace($regex[$i],'', $twit);
}
how do I make it only remove a word if it's exactly the word in string, I mean, I have the following phrase: "#blitz na subida do alfabarra blitz" it will return me: "# alfabarra", I don't want the first "blitz" to be removed because it has a hash "#", i want it to output: "#blitz alfabarra", is it possible ? thanks
$regex) is misleading as you are not using regular expressions at all. And actually,str_replaceaccepts and array, so you could do$twit = str_replace($regex,'', $twit);– Felix Kling May 2 '11 at 13:29