Help for this page

Select Code to Download


  1. or download this
    #The regex, commented for your convinence.
    $Error =~ /Sequence\s #opening anchor, don't capture
    ...
                  ) # close group
                  \sconsists # closing anchor, don't capture
              /x; # end regex
    
  2. or download this
    ($Missing_Living_Being) = $Error =~ /Sequence\s(.+?)consists/;