You are probably correct. Difference in platforms.
code:
$Text =~ s/\xA0/ /g;
$Text =~ s/ / /g;

these two lines could be written as one:

$Text =~ s/\xA0| / /g;



[ 18. November 2002, 05:48: Message edited by: Howard Bullock ]
_________________________
Home page: http://www.kixhelp.com/hb/