|
x operator in Perl
So often, newcomers to programming try to use an "x" operator to multiply - and it doesn't work; they should use "*" in most languages. In Perl ... "x" means something different ... "replicate the string on the left the number of times on the right".
I've frequently been asked for a good example of where "x" is useful. Here's one - printing out the corret number of "-" signs to underline a title in a fixed width font.
print "who are you";
$name = <STDIN>;
chop $name;
print "$name\n";
print "-" x length ($name),"\n";
Further details in our Initial String Handling module
(written 2005-03-22, updated 2006-06-05)
Associated topics are indexed under P205 - Perl - Initial String Handling [3548] Dark mornings, dog update, and Python and Lua courses before Christmas - (2011-12-10) [3547] Using Perl to generate multiple reports from a HUGE file, efficiently - (2011-12-09) [3411] Single and double quotes strings in Perl - what is the difference? - (2011-08-30) [3005] Lots of ways of doing it in Perl - printing out answers - (2010-10-19) [2963] Removing the new line with chop or chomp in Perl - what is the difference? - (2010-09-21) [2832] Are you learning Perl? Some more examples for you! - (2010-06-27) [2816] Intelligent Matching in Perl - (2010-06-18) [2798] Perl - skip the classics and use regular expressions - (2010-06-08) [1860] Seven new intermediate Perl examples - (2008-10-30) [1849] String matching in Perl with Regular Expressions - (2008-10-20) [1608] Underlining in Perl and Python - the x and * operator in use - (2008-04-12) [1195] Regular Express Primer - (2007-05-20) [987] Ruby v Perl - interpollating variables - (2006-12-15) [970] String duplication - x in Perl, * in Python and Ruby - (2006-12-07) [324] The backtick operator in Python and Perl - (2005-05-25) [31] Here documents - (2004-08-28)
Some other Articles
Easter at Well House ConsultantsPolitics gets nasty. Must be an election coming up.Spring is in the airSTDIN, STDOUT, STDERR and DATA - Perl file handlesx operator in PerlFinding the right holesA West End showWIBNIFWe dont stand stillAn easy way out
|
3603 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, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73 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).
|
|