Re: square symbol at end of each line

2005-05-18 Thread mgoland
- Original Message - From: [EMAIL PROTECTED] Date: Wednesday, May 18, 2005 2:05 pm Subject: square symbol at end of each line Hi, Hello I have perl/tk application, where it fetches the data over the internet and displays it in a ROText widget. Everything works but in the output

RE: square symbol at end of each line

2005-05-18 Thread brian . barto
The square symbol likely represents a carriage return. Windows and Unix do not like each other's carriage returns and sometimes when you cross information from one platform to another you get this funny square. You can get rid if it by: s/\015//; or substitute it with a newline character

Re: square symbol at end of each line

2005-05-18 Thread perlocean
- Original Message - From: [EMAIL PROTECTED] To: beginners@perl.org Sent: Wednesday, May 18, 2005 1:17 PM Subject: RE: square symbol at end of each line The square symbol likely represents a carriage return. Windows and Unix do not like each other's carriage returns and sometimes when

Re: square symbol at end of each line

2005-05-18 Thread perlocean
- Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: beginners@perl.org Sent: Wednesday, May 18, 2005 1:13 PM Subject: Re: square symbol at end of each line - Original Message - From: [EMAIL PROTECTED] Date: Wednesday, May 18, 2005 2:05 pm Subject: square