これが、プログラムのこの部分についてこれまでに得たものです。
String text = JOptionPane.showInputDialog("enter a sentence");
String newWord = "";
char space = '_';
int count = 0;
for(int i = 0; i < text.length(); i++)
{
int found = text.indexOf(space, i);
int start = found + 1; // start location of substring after a space
int end = text.indexOf(space, start); // end of word
count = end + 1;
}
while(count < text.length())
{
newWord[count] = text.substring(start, end);
count++;
}
System.out.println(newWord[count]);