Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
E-Mail Validate??
#2
This is not a IW question.
But you can try:


Code:
var input, s:string;
    valid_email:boolean;
begin
    s := '^(([^<>()\[\]\.,;:\s@\"]+(\.[^<>()\[\]\.,;:\s@\"]+)*)|(\".+\"))@(([^<>()[\]\.,;:\s@\"]+\.)+[^<>()[\]\.,;:\s@\"]{2,})$';
   input:='MSG-8b17fa92-7b35-4fdb-9f18-f8a69252e019+BR-999999999@expmessaging.tripadvisor.com';
   valid_email:=TRegEx.IsMatch(input, s, [roIgnoreCase])
end;
Reply


Messages In This Thread
E-Mail Validate?? - by ShaneStump - 11-15-2019, 07:21 PM
RE: E-Mail Validate?? - by cprmlao@hotmail.com - 11-16-2019, 04:07 PM
RE: E-Mail Validate?? - by ShaneStump - 11-16-2019, 04:11 PM
RE: E-Mail Validate?? - by cprmlao@hotmail.com - 11-16-2019, 04:30 PM
RE: E-Mail Validate?? - by ShaneStump - 11-16-2019, 04:34 PM
RE: E-Mail Validate?? - by cprmlao@hotmail.com - 11-16-2019, 06:48 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)