Advertisement
k0mZ

Untitled

Nov 6th, 2017
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. private void txtTelefon_Leave(object sender, EventArgs e)
  2. {
  3. String t = @"\+381\W\d{2}\W\d{6,7}";
  4. //match + 3digits space 2digits space 7digits
  5.  
  6. Regex r = new Regex(t);
  7.  
  8. Match m = r.Match(txtTelefon.Text);
  9. if (!m.Success)
  10. {
  11. MessageBox.Show("Pogresno unet broj!", "Obavestenje",
  12. MessageBoxButtons.OK, MessageBoxIcon.Information);
  13. txtTelefon.SelectAll();
  14. txtTelefon.Focus();
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement