Help for this page

Select Code to Download


  1. or download this
    x = FetchSomethingStrange(a)
    
    Function FetchSomethingStrange(p as Integer)
    ...
        FetchSomethingStrange = "my string result"
      End If
    End Function
    
  2. or download this
    $x = b_split('john,biran,someone',',');
    print($x->[0] . $x->[2]);
    
    ...
        $delimiter = quotemeta($delimiter);
        return [ split(/$delimiter/, $string) ];
    }
    
  3. or download this
    $x = FetchSomethingStrange($a);
    
    sub FetchSomethingStrange {
    ...
      }
      return $FetchSomethingStrange; # Autoreturn 
    }