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

Unknown characters

by HyperDevil (Initiate)
on Feb 08, 2011 at 22:17 UTC ( [id://887070]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    while ($sock->recv($msg, 1024)) {
    $length = length($msg);
    print "MESSAGE: $msg LENGTH: $length\n";
    }
    
  2. or download this
    MESSAGE: !A LENGTH: 2 
    MESSAGE: IVDM,1,1,,A,?3nGtL0uPi7pD00,2*46 
     LENGTH: 34
    
  3. or download this
    while ($sock->recv($msg, 1024)) {
        $length = length($msg);
        print "MESSAGE: $msg LENGTH: $length";
    }
    
  4. or download this
    MESSAGE: !AI LENGTH: 3MESSAGE: ADM,1,1,,A,13mK@M0P000gVvvTC=4:LgwV2L0B
    +,0*4C
     LENGTH: 46MESSAGE: !AIVDM,1,1,,A,40 LENGTH: 16MESSAGE: 2M43AudTF;o0fr
    +sPTBHl700L0h,0*5A
    
  5. or download this
    while ($sock->recv($msg, 1024)) {
        $msg1 = substr $msg, 0, -1;
        print "MESSAGE: $msg1 LENGTH: $length";
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://887070]
Front-paged by Arunbear
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (5)
As of 2024-04-23 19:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found