id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

tmhscs@gmail.com regex > regex_verifyEmailAddress
prev  |  next  |  chance

Given a String, return true if it contains a valid gmail or yahoo email address. It should have some text without spaces and then end with @gmail.com or @yahoo.com. It should not have spaces anywhere or have multiple @ signs.


regex_verifyEmailAddress("johndoe@gmail.com") → true
regex_verifyEmailAddress("janesmith@gmail.com") → true
regex_verifyEmailAddress("johndoe@gmail .com") → false

...Save, Compile, Run (ctrl-enter)

public boolean regex_verifyEmailAddress(String text) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Post-solution available

Copyright Nick Parlante 2017 - privacy