| |||||||||||
| |||||||||||
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 R109 - Ruby - Strings and Regular ExpressionsP205 - Perl - Initial String Handling
Some other Articles
Adding a member to a Hash in RubyRuby - Totally Topical Melksham Quiz You should think you're first in a hotel room Ruby v Perl - interpollating variables puts - opposite of chomp in Ruby Equality in Ruby - == eql? and equal? Cardinal numbers and magic numbers Blessing in Perl / Member variable in Ruby Notes from the white board 1637 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 at 50 posts per pageThis 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). |
| ||||||||||
PH: 01144 1225 708225 • FAX: 01144 1225 707126 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho | |||||||||||