Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: ASCII insert after read

by pc88mxer (Vicar)
on Jul 29, 2008 at 19:40 UTC ( [id://700908]=note: print w/replies, xml ) Need Help??


in reply to ASCII insert after read

An easier way to test for the ASCII character 12 is to use a regex:
if ($line =~ m/\014/) { # $line contains a Control-L }
Update: I guess your approach can work, but it's a little awkward. You are comparing the octal representation of a number (which is a string) to a decimal value. Doing it your way I would have written it:
$test = sprintf("%o", ord $_); if ($test eq "14") { ... }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (8)
As of 2024-04-23 12:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found