Hello!
I have a XML whitespace that i have to point out and cut off... this whitespace is a String of a '\r' or a '\n' followed by 3 tabs (3x'\t').
My problem is that php doesn't recognize:
$string[$i] !='\r' neither the
strcmp($string{$i},'\r'), both of them return true when it was suposed to return false!
Now i'm ready to try anything, even convert each part to ASCII and then compare de value, but i don't know how to do that...
Can anybody help?
Thanks in advance
Rui M.