Check Valid Email in AS3

Check Valid Email in AS3

Where construction of forms in Flash is required to whether the email account is entered correctly or not do this there are many ways that we here are the two ways: Way 1 : package { public class EmailValidation { public static function check(email:String):Boolean { //Use Regular Expressions var pattern:RegExp = /(\w|[_.\-])+@((\w|-)+\.)+\w{2,4}+/; var result:Object = [...]