fork download
  1. <?php
  2.  
  3. $input = "@info and more here\nText here: @ok_test somthin here";
  4. preg_match_all('~\B@\w+~', $input, $matches);
  5. print_r($matches[0]);
Success #stdin #stdout 0s 82944KB
stdin
Standard input is empty
stdout
Array
(
    [0] => @info
    [1] => @ok_test
)