Help for this page

Select Code to Download


  1. or download this
    sub get_groups {
        my @groups = ();
    ...
        print Dumper(@groups);
    
    } ## ---------- end sub get_groups
    
  2. or download this
    my $string = "A (B C D)";
    get_groups($string);
    ...
    $string = "A B (C (D E) (F G)) (H I)";
    $string = "(A B) M N ((C (D E)) (F G)) (Z(H I)) T R";
    get_groups($string);