Greetings and salutations.

Hi.  I am reading a file into a string,

char[] text = cast(string) f0.read();

and I want to replace every non-breaking space in the string.  I know that the 
hex value for that is A0, but when I do this call,

text = std.string.replace(text,x"A0"," ");

It does takes it out, but it adds (or leaves) a little square to it.  
Apparently, it leaves something else, there.  It would be nice if std.string 
had a function to go from hex to decimal and back.

Any ideas?

thanks,

josé

Reply via email to