Help for this page

Select Code to Download


  1. or download this
    use Text::Balanced qw( extract_tagged );
    # The rest of your code from above here.
    
  2. or download this
    use Text::Balanced;
    
    my $text = 'sometexthere';
    
    ($extracted, $remainder) = Text::Balanced::extract_tagged($text);