I have four arrays as follow.
Main String Array - contains the words of a main string
User String Array - contains the words of the user string
Missing words Array - contains the missing words of the user string
Value Array - contains the value of each word in the user string array
I have another empty array to assign new values. What I am doing is as below.
- Compare each element in the main string with the corresponding element in the user string.
- If the two elements are matching assign the corresponding element of value array to the new value array.
- Else check whether the element is matching with the missing words array.
- If it matches assign "0" to the corresponding element in the new value array.
What I have done up to now is given below.
for (int i = 0; i < mainStringArray.length; i++) {
if (userStringArray[i].equals(mainWordsArray[i])){
newvalueArray[i] = valueArray[i];
}
else {
if (mainStringArray[i].equals(missingWordsArray[i])){
newValueArray[i] = 0;
}
}
System.out.println(mainStringArray[i] + " " + newValueArray[i]);
}
}
But I get an ArrayIndexOutOfBoundsException because the arrays are not same size. Please tell me a way to avoid this.
In a short way what I want is , I have a main string and a user string. Each word in the user string has a corresponding value and it is stored in the value array. I want to add those values to the words in the main string which can be found in the user string and 0 to the missing words.
homeworktag> – bestsss Mar 1 '11 at 10:03