in reply to odd text object problem - how to store as string?
If you use the object as a string, it becomes a string. You could do
my $str = "" . $obj;
but it would be clearer if you did the equivalent
my $str = $obj->draw();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: odd text object problem - how to store as string?
by emmiesix (Novice) on Jun 24, 2011 at 21:47 UTC | |
by ikegami (Patriarch) on Jun 24, 2011 at 22:40 UTC | |
by emmiesix (Novice) on Jun 25, 2011 at 00:15 UTC | |
by ~~David~~ (Hermit) on Jun 24, 2011 at 22:34 UTC |