Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Perl memset equivalent?

by sauoq (Abbot)
on Jun 26, 2012 at 18:43 UTC ( [id://978486]=note: print w/replies, xml ) Need Help??


in reply to Perl memset equivalent?

It's hard to guess what you are trying to achieve exactly... Do you want:

@stn_names = (0) x STN_NAME_LEN;
which gives you an array filled with five zeros? Or do you want something more like:
my $s = pack "c5", (0)x5;
which will give you a string packed with 5 nulls?

-sauoq
"My two cents aren't worth a dime.";

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (7)
As of 2024-04-19 15:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found