Help for this page

Select Code to Download


  1. or download this
    if ( ( $a, $b, $c ) = $current_text =~ s/$some_regex// )
    {
        # do something useful
        next READ_MORE_DATA
    }
    
  2. or download this
    if ( $current_text =~ s/$some_regex// )
    {
    ...
        # do something useful
        next READ_MORE_DATA
    }