Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. my $line = <>;
  2.  
  3. if($line =~ /hellonthere/m){
  4. say "matched";
  5. }
  6. else{
  7. say "no match";
  8. }
  9.  
  10. hello
  11. there
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement