Guest User

Untitled

a guest
May 20th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. $data = 123412347JB91742F;
  2.  
  3. if(preg_match('/[A-Z1-9]/', $data )) {
  4. echo $data;
  5.  
  6. }
  7. else {
  8. exit;
  9. }
  10.  
  11. preg_match('/^[A-Z1-9]+$/', $data)
  12.  
  13. preg_match('/^[A-Z0-9]+$/i', $data)
  14.  
  15. /^[A-Z1-9]+$/
Add Comment
Please, Sign In to add comment