Though Java already has a character type and char keyword to represent and manipulate characters, the language also requires a Character class for two reasons: Character c1 = new Character ('A'); ...
I want to validate a string so that it only contains alphabetic characters, as well as the "-" (dash) character.<BR><BR>I know this has something to do with regular expressions but I haven't learned ...