Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. validate emails which is seperated with comma

validate emails which is seperated with comma

Scheduled Pinned Locked Moved ASP.NET
javascripthelpquestion
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Offline
    L Offline
    Lost User
    wrote on last edited by
    #1

    how can i validate emails which is seperated with comma(,) using javascript. plz help me to grt the code thks yesuprakash

    M B 2 Replies Last reply
    0
    • L Lost User

      how can i validate emails which is seperated with comma(,) using javascript. plz help me to grt the code thks yesuprakash

      M Offline
      M Offline
      M A A Mehedi Hasan
      wrote on last edited by
      #2

      Hey, Please visit the following links. http://regexlib.com/DisplayPatterns.aspx http://www.regular-expressions.info/ I hope u will get your answer there.

      Mehedi Hasan

      1 Reply Last reply
      0
      • L Lost User

        how can i validate emails which is seperated with comma(,) using javascript. plz help me to grt the code thks yesuprakash

        B Offline
        B Offline
        badgrs
        wrote on last edited by
        #3

        Heres a function I use:

        function ValidateMultiEmail(value) {
            var emails = value.split(',');
            var re = new RegExp("\\w+([-+.']\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*");
            var valid = true;
            for (var i = 0; i < emails.length; i++)
            {
                if (emails[i].trim() != '' && !re.test(emails[i]))
                {
                    valid = false;
        	    break;
                }
            }
            return valid;
        }
        

        The regular expression isn't full-proof - you will get some false positives but only in the most unlikely cases.

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups