Help for this page

Select Code to Download


  1. or download this
    $obj->bar++;
    
    ...
    $obj->len++ while substr( $obj->bar, $obj->start, $obj->len ) =~ m[^\s
    ++$];
    substr( $obj->bar, $obj->start, $obj->len, '');
    $obj->len = 0;
    
  2. or download this
    $obj->bar( $obj->$bar() + 1 );
    
    ...
    substr $temp3, $obj->start, $temp2, '' );
    $obj->bar( $temp2 );
    $obj->len( $temp3 );
    
  3. or download this
    ## $a++;
    $a( $a() + 1 ); 
    
    # $b *= $c-- $d++;
    $b( $b() * $c( $c() - 1 ) % $d( $d() + 1 ) );