Guest User

Untitled

a guest
May 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. <?php
  2. $re = '/Hi (.*)?,/';
  3. $str = 'Hi Terry,';
  4.  
  5. preg_match($re, $str, $matches);
  6.  
  7. var_dump($matches);
  8.  
  9. echo $matches[1];
Add Comment
Please, Sign In to add comment