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

 

findDomain


Create a method public String findDomain (String email) that will return the domain name of the email address. IE boralj@portlandschools.org would return portlandschools (all emails will have one @ and .)


findDomain("boralj@portlandschools.org") → "portlandschools"
findDomain("johndoe@company.com") → "company"
findDomain("jane_doe@university.edu") → "university"

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

public String findDomain(String email) { }

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

Copyright Nick Parlante 2017 - privacy