fork download
  1. if ('xc@mypost.com' =~ /\A\w([^@\s,;]+)@(mypost\.com|[\w-]+\.edu)\z/i) != nil
  2. puts "yes"
  3. else
  4. puts "no"
  5. end
  6.  
  7. if ('xc@dblist.com' =~ /\A\w([^@\s,;]+)@(mypost\.com|[\w-]+\.edu)\z/i) != nil
  8. puts "yes"
  9. else
  10. puts "no"
  11. end
Success #stdin #stdout 0.01s 7412KB
stdin
Standard input is empty
stdout
yes
no