Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: A Tricky Problem with Context

by RSevrinsky (Scribe)
on Apr 08, 2002 at 08:37 UTC ( [id://157386]=note: print w/replies, xml ) Need Help??

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 
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://157386]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (2)
As of 2024-04-26 06:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found