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

Re^2: Detecting if a string is a regular expression

by LanX (Saint)
on Jan 12, 2013 at 11:03 UTC ( [id://1013030]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $ perl -ple ' $_ = eval "sub { /$_/ }" ? "OK\n" : "$@" '
    a
    ...
    
    a()
    OK
    
  2. or download this
    $ perl -ple ' $_ = eval "sub { /$_/ }" ? "OK\n" : "$@" '
    a[$]
    OK
    
  3. or download this
    $ perl -e ' "abc" =~ /a[$]/ '
    Unmatched [ in regex; marked by <-- HERE in m/a[ <-- HERE 5.010000/ at
    + -e line 1.
    
  4. or download this
    $ perl -e 'sub {"aaa" =~ /a[$]/}'
    $ perl -e '"aaa" =~ /a[$]/'
    Unmatched [ in regex; marked by <-- HERE in m/a[ <-- HERE 5.010000/ at
    + -e line 1.
    $ perl -ce '"aaa" =~ /a[$]/'
    -e syntax OK
    
  5. or download this
    perl -E 'say q(a$) =~ q(a[$]) '
    1
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (2)
As of 2024-04-25 20:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found