Let's say a user inputs text. How does one check that the corresponding String
is made up of only letters and numbers?
import java.util.Scanner;
public class StringValidation {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter your password");
String name = in.nextLine();
(inert here)