Hello !
I am getting a String from a .xlsx file ->"N°X"
I would like to replace "N°"
by Num_X
I am trying to do this with
$var = str_replace("N°","Num_",$var);
But nothing is replaced (according to echo $var
)
problem come from °
because when i try to replace some String by other
(without °
) str_replace works
Any suggestions ?