String and Array Creation

2010-04-28 0 min read Learning Linux perl
\"Perl\"
Image via Wikipedia

<img src="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/perl-one-liners.jpg" alt="Perl One Liners" align="bottom" />This is the fourth part of a nine-part article on famous <a class="zem_slink freebase/en/perl" title="Perl" rel="homepage" href="http://www.perl.org/">Perl one-liners. In this part I will create various one-liners for string and array creation. See <a href="http://www.catonmat.net/blog/perl-one-liners-explained-part-one/">part one for introduction of the series.

Famous Perl one-liners is my attempt to create “perl1line.txt” that is similar to “<a href="http://www.catonmat.net/blog/awk-one-liners-explained-part-one/">awk1line.txt” and “<a href="http://www.catonmat.net/blog/sed-one-liners-explained-part-one/">sed1line.txt” that have been so popular among Awk and Sed programmers.

The article on famous Perl one-liners will consist of nine parts:

  • <a href="http://www.catonmat.net/blog/perl-one-liners-explained-part-one/">Part I: File spacing.
  • <a href="http://www.catonmat.net/blog/perl-one-liners-explained-part-two/">Part II: Line numbering.
  • <a href="http://www.catonmat.net/blog/perl-one-liners-explained-part-three/">Part III: Calculations.
  • Part IV: String creation and array creation (this part).
  • Part V: Text conversion and substitution.
  • Part VI: Selective <a class="zem_slink freebase/en/printing" title="Printing" rel="wikipedia" href="http://en.wikipedia.org/wiki/Printing">printing and deleting of certain lines.
  • Part VII: Handy <a class="zem_slink freebase/en/regular_expression" title="Regular expression" rel="wikipedia" href="http://en.wikipedia.org/wiki/Regular_expression">regular expressions.
  • Part VIII: Release of perl1line.txt.
  • Part IX: Release of Perl One-Liners e-book.

I decided that there will be two new parts in this series. The most powerful feature in Perl is its regular expressions, therefore I will write a part on “Handy Perl regular expressions.” I also decided to publish an e-book after I am done with the series, so that will be the last part of this series. Everyone who’s subscribed to my blog will get a free copy! <a href="http://www.catonmat.net/feed/">Subscribe to my blog now!

I also updated the <a href="http://www.catonmat.net/blog/perl-one-liners-explained-part-three/">previous part on calculations with 14 new one-liners on finding values of constants pi and e, doing date calculations, finding factorial, <a class="zem_slink freebase/en/greatest_common_divisor" title="Greatest common divisor" rel="wikipedia" href="http://en.wikipedia.org/wiki/Greatest_common_divisor">greatest common divisor, <a class="zem_slink freebase/en/least_common_multiple" title="Least common multiple" rel="wikipedia" href="http://en.wikipedia.org/wiki/Least_common_multiple">least common multiple, generating random numbers, generating permutations, finding power sets and doing some <a class="zem_slink freebase/en/ip_address" title="IP address" rel="wikipedia" href="http://en.wikipedia.org/wiki/IP_address">IP address conversions.

Here are today’s one-liners:

<span style="font-size: large;">String Creation and Array Creation

49. Generate and print the alphabet.

perl -le \'print a..z\'

This one-liner prints all the letters from a to z as abcdefghijklmnopqrstuvwxyz. The letters are generated by the range operator ... The range operator, when used in the list context (which is forced here by print) on strings, uses the magical auto-increment algorithm that advances the string to the next character. So in this one-liner the auto-increment algorithm on the range a..z produces all the letters from a to z.

I really golfed this one-liner. If you used strict it would not work because of barewords a and z. Semantically more correct version is this:

perl -le \'print (\"a\"..\"z\")\'

Remember that the range operator .. produced a list of values. If you wish, you may print them comma separated by setting the $, special variable:

perl -le \'$, = \",\"; print (\"a\"..\"z\")\'

There are many more special variables. Take a look at my <a href="http://www.catonmat.net/blog/perls-special-variable-cheat-sheet/">special variable cheat sheet for a complete listing.

50. Generate and print all the strings from “a” to “zz”.

perl -le \'print (\"a\"..\"zz\")\'

Here the range operator .. is used again. This time it does not stop at “z” as in the previous one-liner, but advances z by one-character producing “aa”, then it keeps going, producing “ab”, “ac”, …, until it hits “az”. At this point it advances the string to “ba”, continues with “bb”, “bc”, …, until it reaches “zz”.

Similarly you may generate all strings from “aa” to “zz” by:

perl -le \'print \"aa\"..\"zz\"\'

Here it goes like “aa”, “ab”, …, “az”, “ba”, “bb”, …, “<a class="zem_slink" title="List of Latin digraphs" rel="wikipedia" href="http://en.wikipedia.org/wiki/List_of_Latin_digraphs">bz”, “ca”, … “zz”.

51. Create a hex <a class="zem_slink freebase/en/lookup_table" title="Lookup table" rel="wikipedia" href="http://en.wikipedia.org/wiki/Lookup_table">lookup table.

@hex = (0..9, \"a\"..\"f\")

Here the array @hex gets filled with values 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 and letters a, b, c, d, e, f.

You may use this array to convert a number (in variable $num) from decimal to hex using <a class="zem_slink freebase/en/numeral_system" title="Numeral system" rel="wikipedia" href="http://en.wikipedia.org/wiki/Numeral_system">base conversion formula:

perl -le \'$num = 255; @hex = (0..9, \"a\"..\"f\"); while ($num) { $s = $hex[($num%16)&15].$s; $num = int $num/16 } print $s\'

52. Generate a random 8 character password.

perl -le \'print map { (\"a\"..\"z\")[rand 26] } 1..8\'

Here the map function executes ("a".."z")[rand 26] code 8 times (because it iterates over the dummy range 1..8). In each iteration the code chooses a random letter from the alphabet. When map is done iterating, it returns the generated list of characters and print function prints it out by <a class="zem_slink freebase/en/concatenation" title="Concatenation" rel="wikipedia" href="http://en.wikipedia.org/wiki/Concatenation">concatenating all the characters together.

If you also wish to include numbers in the password, add 0..9 to the list of characters to choose from and change 26 to 36 as there are 36 different characters to choose from:

perl -le \'print map { (\"a\"..\"z\", 0..9)[rand 36] } 1..8\'

If you need a longer password, change 1..8 to 1..20 to generate a 20 character long password.

53. Create a string of specific length.

perl -le \'print \"a\"x50\'

Operator x is the repetition operator. This one-liner creates a string of 50 letters “a” and prints it.

If the repetition operator is used in list context, it creates a list (instead of scalar) with the given elements repeated:

perl -le \'@list = (1,2)x20; print \"@list\"\'

This one liner creates a list of twenty repetitions of (1, 2) (it looks like (1, 2, 1, 2, 1, 2, …)).

54. Create an array from a string.

@months = split \' \', \"Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec\"

Here the @months gets filled with values from the string containing month names. As each month name is separated by a space, the split function splits them and puts them in @months. This way $months[0] contains “Jan”, $months[1] contains “Feb”, …, and $months[11] contains “Dec”.

55. Create a string from an array.

@stuff = (\"hello\", 0..9, \"world\"); $string = join \'-\', @stuff

Here the values in array @stuff get turned in a string $string that has them separated by a hyphen. Turning an array in a string was done by the join function that takes a separator and a list, and concatenates the items in the list in a single string, separated by the separator.

56. Find the numeric values for characters in the string.

perl -le \'print join \", \", map { ord } split //, \"hello world\"\'

This one-liner takes the string “hello world”, splits it into a list of characters by split //, "hello world", then it maps the ord function onto each of the characters, which returns the numeric, native 8-bit encoding (like ASCII or EBCDIC) of the character. Finally all the numeric values get joined together by a comma and get printed out.

Another way to do the same is use the unpack function and specify C* as the unpacking template (C means unsigned character and * means as many characters there are):

perl -le \'print join \", \", unpack(\"C*\", \"hello world\")\'

57. Convert a list of numeric ASCII values into a string.

perl -le \'@ascii = (99, 111, 100, 105, 110, 103); print pack(\"C*\", @ascii)\'

Just as we unpacked a string into a list of values with the C* template in the one-liner above, we can pack them back into a string.

Another way to do the same is use the chr function that takes the code point value and returns the corresponding character:

perl -le \'@ascii = (99, 111, 100, 105, 110, 103); print map { chr } @ascii\'

Similar to one-liner #55 above, function chr gets mapped onto each value in the @ascii producing the characters.

58. Generate an array with odd numbers from 1 to 100.

perl -le \'@odd = grep {$_ % 2 == 1} 1..100; print \"@odd\"\'

This one-liner generates an array of odd numbers from 1 to 99 (as 1, 3, 5, 7, 9, 11, …, 99). It uses the grep function that evaluates the given code $_ % 2 == 1 for each element in the given list 1..100 and returns only the elements that had the code evaluate to true. In this case the code tests if the reminder of the number is 1. If it is, the number is odd and it has to be put in the @odd array.

59. Generate an array with even numbers from 1 to 100.

perl -le \'@even = grep {$_ % 2 == 0} 1..100; print \"@even\"\'

This is almost the same as the previous one-liner, except the condition grep tests for is “is the number even (reminder dividing by 2 is zero)?”

60. Find the length of the string.

perl -le \'print length \"one-liners are great\"\'

Just for completeness, the length subroutine finds the length of the string.

61. Find the number of elements in an array.

perl -le \'@array = (\"a\"..\"z\"); print scalar @array\'

Evaluating an array in a scalar context returns the number of elements in it.

<span style="font-size: large;">Have Fun!

Have fun with these one-liners for now. The next part is going to be about text conversion and substitution.

Can you think of other string creating and array creation one-liners that I didn’t include here?

<a href="http://feeds.feedburner.com/~ff/catonmat?a=Yb-bhDJHsVI:J-IhgmmUHwY:yIl2AUoC8zA"><img src="http://blog.amit-agarwal.com/wp-content/uploads/img.zemanta.com/~ff/catonmat?d=yIl2AUoC8zA" alt="" align="bottom" /> <a href="http://feeds.feedburner.com/~ff/catonmat?a=Yb-bhDJHsVI:J-IhgmmUHwY:F7zBnMyn0Lo"><img src="http://blog.amit-agarwal.com/wp-content/uploads/img.zemanta.com/~ff/catonmat?i=Yb-bhDJHsVI:J-IhgmmUHwY:F7zBnMyn0Lo" alt="" align="bottom" /> <a href="http://feeds.feedburner.com/~ff/catonmat?a=Yb-bhDJHsVI:J-IhgmmUHwY:V_sGLiPBpWU"><img src="http://blog.amit-agarwal.com/wp-content/uploads/img.zemanta.com/~ff/catonmat?i=Yb-bhDJHsVI:J-IhgmmUHwY:V_sGLiPBpWU" alt="" align="bottom" /> <a href="http://feeds.feedburner.com/~ff/catonmat?a=Yb-bhDJHsVI:J-IhgmmUHwY:gIN9vFwOqvQ"><img src="http://blog.amit-agarwal.com/wp-content/uploads/img.zemanta.com/~ff/catonmat?i=Yb-bhDJHsVI:J-IhgmmUHwY:gIN9vFwOqvQ" alt="" align="bottom" /> <img src="http://blog.amit-agarwal.com/wp-content/uploads/img.zemanta.com/~r/catonmat/~4/Yb-bhDJHsVI" alt="" width="1" height="1" align="bottom" />

URL: <a href="http://feedproxy.google.com/~r/catonmat/~3/Yb-bhDJHsVI/">http://feedproxy.google.com/~r/catonmat/~3/Yb-bhDJHsVI/<h6 class="zemanta-related-title">Related articles by Zemanta <ul class="zemanta-article-ul"> <li class="zemanta-article-ul-li"><a href="http://www.slideshare.net/drpillaikc/sampurna-arogyasathi-namasmarn-marathi-bestseller-dr-shriniwas-kashalikar-2810946">Sampurna Arogyasathi Namasmarn Marathi Bestseller Dr. Shriniwas Kashalikar (slideshare.net) <li class="zemanta-article-ul-li"><a href="http://www.codinghorror.com/blog/archives/001311.html">Parsing Html The Cthulhu Way (codinghorror.com) <li class="zemanta-article-ul-li"><a href="http://www.geekology.co.za/blog/2009/10/using-regular-expressions-part-2-of-4-regex-in-php/">Using Regular Expressions – Part 2 of 4 – Regex in PHP (geekology.co.za) <li class="zemanta-article-ul-li"><a href="http://www.slideshare.net/mgimenojr/unit1-l3-sarah">Unit1 L3 Sarah (slideshare.net) <li class="zemanta-article-ul-li"><a href="http://petewarden.typepad.com/searchbrowser/2009/12/how-to-guess-gender-from-a-first-name-in-php.html">How to guess gender from a first name in PHP (petewarden.typepad.com) <div class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/50f2a654-692f-490b-9bbc-57a5b6449569/"><img class="zemanta-pixie-img" src="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/reblog_b51.png" alt="Reblog this post [with Zemanta]" /><span class="zem-script more-related more-info pretty-attribution paragraph-reblog">

comments powered by Disqus