in reply to Re: Printing Last Element of a line using perl memory?
in thread Printing Last Element of a line using perl memory?
Or if you want to reveal every character in your string's ascii code, you can do this: printf "%vd \n", $string;
Thanks for that. I had no idea it existed.
And (IMO) even better is that is led me to just try: printf "%vx\n", $s;. And whaddayaknow. It worked!
I'll be making much use of that in future.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Printing Last Element of a line using perl memory?
by 7stud (Deacon) on Feb 15, 2013 at 01:44 UTC |