|
Ruby v Perl - interpollating variables
When printing in Perl, you can drop a variable into a double quoted string ant it will be interpretter for you:
"--- $number ---"
If you want to perform an operation on the variable, though, it's not as easy - you have to come out of the double quoted string, do the calculation, then start another string:
"--- ",$number + 1," ---"
In Ruby, variable names do NOT start with a $ so you can't simply drop them in to your double quoted string. Instead, you can write #{expression} within the double quotes and that gives you ...
"--- #{number + 1} ---"
And that's fabulous - it gives you the ability to write any expresion you want, or just a simple variable, with a double quoted string and have the same simple syntax for both. (written 2006-12-15 04:57:25)
Associated topics are indexed under P205 - Perl - Initial String HandlingR109 - Ruby - Strings and Regular Expressions
Some other Articles
Adding a member to a Hash in RubyRuby - Totally TopicalMelksham QuizYou should think you're first in a hotel roomRuby v Perl - interpollating variablesputs - opposite of chomp in RubyEquality in Ruby - == eql? and equal?Cardinal numbers and magic numbersBlessing in Perl / Member variable in RubyNotes from the white board
|
2259 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46 at 50 posts per page
This is a page archived from The Horse's Mouth at
http://www.wellho.net/horse/ -
the diary and writings of Graham Ellis.
Every attempt was made to provide current information at the time the
page was written, but things do move forward in our business - new software
releases, price changes, new techniques. Please check back via
our main site for current courses,
prices, versions, etc - any mention of a price in "The Horse's Mouth"
cannot be taken as an offer to supply at that price.
Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).
|
|