smartperl:

When I see a problem like this, I normally break it apart into steps. Then, if I can't immediately write down the solution to any of those steps, I break the steps down even further. Something like:

my $spec="11-29,39-72,99-100,103,107"; my $input = "The quick red fox jumped over the lazy brown dog."; # break spec into set of offsets and lengths # for each offset and length... for (my $idx=0 .. $#specs) { my ($input, $offset) = # how did I store them? #...extract a substring... my $substring = substr($input, $offset, $length); #...then print the result print "<$substring> is substr(...,$offset,$length)\n"; }

Ok, I handled the easy part. Now I break down each comment that doesn't have code. Keep doing that until everything is done.

When you start out, you sometimes get a problem that seems complicated, but if you start breaking it down into subproblems, you often find that it's just a few trivial bits glued together.

...roboticus

When your only tool is a hammer, all problems look like your thumb.


In reply to Re: substring within range by roboticus
in thread substring within range by smartperl

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.