私はプログラムを構築しようとしています
@
シンボルを見つけ、次に.edu
教育用メールアドレスの一部を見つけ、最後に- セクションを削除し
@school.edu
、残りを返します。
を使用してみましcharAt
たが、互換性のない型エラーが発生し続け、毎回異なる場所にある可能性のある文字列のセクションを削除する方法がわかりません。どんなガイダンスも大歓迎です。
ここに私がこれまでに持っているものがあります:
if (UserEmail.charAt(0) == (".edu"))
String UserName = UserEmail.substring(0,//location of @//)
else
System.out.print(UserEmail + "is not an acceptable email address.
System.out.print("Type your email address.");
UserEmail = kb.nextLine();