Honestly, I did think of doing it that way, but considered it rather too repetitive. The problem is there are conditions under which you want to change the depth for your next state — but a separate issue is whether you want to change depth before processing the current state. That's why the code ends up so messy.

The following doesn't get rid of the variable, but rather repurposes and renames it to separate the two distinct decisions involved more cleanly.

{ my( $indent, $depth ) = ( "\t", 0 ); sub pp { my $next_depth; my( $end_chunk, $first ) = f1( $str ); if( defined $first ) { if( $first eq CONST1 ) { ++$end_chunk; $next_depth = --$depth; } elsif( defined my $pos2 = f2( $str, $first ) ) { $next_depth = $depth; $end_chunk = $pos2 + 2; } else { $next_depth = $depth + 1; } } else { $next_depth = $depth; } print $indent x $depth, substr( $str, 0, $end_chunk ); $str =~ s[^.{$end_chunk}\s*][]; $depth = $new_depth; return; } }

I still think your code is doing a lot of manual pattern matching which could be better done by the regex engine.

Makeshifts last the longest.


In reply to Re^3: Refactoring challenge. by Aristotle
in thread Refactoring challenge. by BrowserUk

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.