in reply to Re^2: Displaying RTF string to browser
in thread Displaying RTF string to browser
Try, hmm... How to make this easy? OK, let's stick to general cross-platform solution: RTF is text, so we'll just print the text of the file to STDOUT line by line.
open IN, $RTF_obj or die "Oops?"; while(<IN>) { print; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Displaying RTF string to browser
by ikkon (Monk) on Aug 21, 2007 at 17:21 UTC | |
by bart (Canon) on Aug 21, 2007 at 21:12 UTC |