G'day feumw,

With some realistic, example values for $sFunction, I may have provided a slightly different solution; however, in general, I'd probably tackle this with a dispatch table. Here's some example code showing the technique.

#!/usr/bin/env perl use strict; use warnings; my %action_for; %action_for = ( test1 => sub { my ($input) = @_; print "*** Input: $input\n"; print "Test 1 code\n" }, test2 => sub { my ($input) = @_; $action_for{test1}->($input); print "Test 2 code\n"; }, ); my @tests = qw{ test1 test2 Atest1 test2B XYZ test1C test2D Etest1F Gtest2H }; /(test\d)/ && $action_for{$1}->($_) for @tests;

Output:

*** Input: test1 Test 1 code *** Input: test2 Test 1 code Test 2 code *** Input: Atest1 Test 1 code *** Input: test2B Test 1 code Test 2 code *** Input: test1C Test 1 code *** Input: test2D Test 1 code Test 2 code *** Input: Etest1F Test 1 code *** Input: Gtest2H Test 1 code Test 2 code

— Ken


In reply to Re: recursive call of current script by kcott
in thread recursive call of current script by feumw

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.