fork(1) download
  1. <?php
  2.  
  3. $re = '/\b\p{L}+(?:-\p{L}+)*!/u';
  4. $str = "Hello k-ąn! Lorem Ipsum! Lorem.";
  5. preg_match($re, $str, $match);
  6. print_r($match);
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
Array
(
    [0] => k-ąn!
)