Help for this page

Select Code to Download


  1. or download this
    my $abstr = $dom1->at('div.abstract-content > p' || 'not provided')->t
    +ext;
    
  2. or download this
    my $obj   = $dom1->at('div.abstract-content > p' || 'not provided');
    my $abstr = defined $obj ? $obj->text : 'Object undefined';