Facebook
From Scott, 1 Month ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 173
  1. # Find the *first* three letter word in the string
  2. my $str = "one two three four five six seven eight nine ten";
  3. my @x   = $str =~ m/b(w{3})b/; # ("one")

Replies to Untitled rss

Title Name Language When
Re: Untitled Scott perl 1 Month ago.