I\'ve got a simple java assignment. I need to determine if a string starts with the letter A through I. I know i have to use string.startsWith(); but I don\'t want to write,
if ( string.charAt(0) >= 'A' && string.charAt(0) <= 'I' ) { }
should do it