79179925

Date: 2024-11-12 05:57:21
Score: 2
Natty:
Report link

In your example you could just use...

if ( $c eq 'd' || $c eq '9' ) {

I needed to know...

if ( "08:30:22" > 10 ) {

I used

if ( unpack('a2',$time) > 10 ) {

Or you could convert the character to ascii...

if ( ord($c) == 100 or orc($c) == 59 ) {
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Matt