ASCII to UTF8 in perl, how?

2004-10-16 Thread Brian Gunlogson
Hello list, How do I take a vanilla ASCII string, say the spanish word "tenĂ­a", and convert it to UTF8? Brian G. __ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail -- To unsubscribe

Re: Why are file handles wierd?

2004-10-16 Thread Brian Gunlogson
A filehandle is kinda like a namespace for the file. It shouldn't have a datatype, because it doesn't contain data. --- Siegfried Heintze wrote: > I asked this question previously, but received no response. I sure the > reason was that I was far too verbose. So let me make it simple: > > What is

Re: Printing to a file

2004-10-26 Thread Brian Gunlogson
Put the MY in braces. SO print MY $line; WOULD BECOME print {MY} $line; --- Kevin Old <[EMAIL PROTECTED]> wrote: > Hello everyone, > > First, this is a basic problem, but I have looked at it for over an > hour and wasted time. Now, I'm asking for help. > > For some reason nothing is being pr

RE: Printing to a file

2004-10-26 Thread Brian Gunlogson
Oops, my bad. This looked like a problem I had. I stored a filehandle in a hash, and it confused print when I accessed the filehandle as a scalar. I'd better think before I post again... *blush* --- Bob Showalter <[EMAIL PROTECTED]> wrote: > Brian Gunlogson wrote: > >