regex - Validate an email address is valid and came from a specific Domain -


एक ईमेल पता को देखते हुए, कहते हैं: bob@google.com

कोल्डफ्यूज़न में, मैं कैसे मान्य कर सकता हूं कि ईमेल "google.com" से है और कोई अन्य डोमेन नहीं है?

ठीक है, यहाँ जवाब है सीएफएमएल में :)

  & lt; cfset email = "bob@google.com" / & gt; & Lt; cfif ListLast (ईमेल, "@") ईक्यू "google.com" & gt; Horray! & Lt; / cfif & gt;  

संपादित करें

विशेष रूप से अमरघोश के लिए हम इसे इस तरह से कर सकते हैं, कोई चिंता नहीं:

  & lt; cfscript & gt; ईमेल = "bob@google.com"; अगर (सूची लिस्ट (ईमेल, "@") == "google.com") {// यहां आप जा रहे हैं} & lt; / cfscript & gt;  

Comments

Popular posts from this blog

c# - How to capture HTTP packet with SharpPcap -

php - Multiple Select with Explode: only returns the word "Array" -

php - jQuery AJAX Post not working -