fork download
  1. #!/usr/bin/perl
  2. # your code goes here
  3. $_ = " ghj* ";
  4. if(/\bghj\b/){
  5. print "yes";
  6. }else{
  7. print "no";
  8. }
  9.  
Success #stdin #stdout 0s 18256KB
stdin
Standard input is empty
stdout
yes