我有一些文字,我分开了单词,现在我需要检查每个单词是否以相同的字母开头(例如:'teeet','teeeT,'Teeet')。我怎么做 ?这是我所做的:
Scanner input = new Scanner(System.in);
String text = input.nextLine();
String[] arr = text.split(" ");
System.out.println("Display all words in a string: ");
for ( String ss : arr) {
// What now ?
}
我需要用正则表达式来做