in reply to Re: Modify a variable within curly braces (ASCII Sequence))
in thread Modify a variable within curly braces (ASCII Sequence))
Whatever is the problem with print("\e[4;" . ($a += 10) . "HEnd Here $a\n"); ?
Indeed, and whatever would be the problem with
$a += 10;
print("\e[4;${a}HEnd Here $a\n");
I have to say that, while it will work (and other, similar solutions could be found), BrowserUk's solution falls into the category of Stupid Interpolation Tricks in the context of the problem of the OP. I hope westrock2000's original question was prompted by pure curiosity and not by any inclination to actual use, for if westrock2000 tries to use this or a similar trick in production code, he or she had better be sure none of the maintainers of said code know where he or she lives!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Modify a variable within curly braces (ASCII Sequence))
by BrowserUk (Patriarch) on Jun 04, 2010 at 18:41 UTC | |
by westrock2000 (Beadle) on Jun 05, 2010 at 11:25 UTC | |
by BrowserUk (Patriarch) on Jun 05, 2010 at 12:09 UTC | |
|
Re^3: Modify a variable within curly braces (ASCII Sequence))
by ambrus (Abbot) on Jun 04, 2010 at 20:40 UTC |