Wher is the problem? My string isn't behaving...
Well, I was making a true/false quiz game and I decided to load the questions from a text file with a fancy back name(.questionbank). I wrote this nice piece of code
void LoadQuestionBank()
{
//initialize from .txt
List<Question> loadedQuestions = new List<Question>();
string TheString;
StreamReader sr = new StreamReader(Application.dataPath + "/" + BankName + ".questionbank",Encoding.Unicode);
using (sr)
{
do
{
TheString = sr.ReadToEnd();
Debug.Log(TheString);
if (TheString != null)
{
List<string> singleLines = TheString.Split('#').ToList();
Debug.Log(singleLines.ToString());
int X = 0;
foreach (string item in singleLines)
{
Debug.Log(item);
if (item[X].Equals("/") && item[X+1].Equals("/") && item[X+2].Equals("/"))
{
bool _isTrue;
string fact = item.Substring(X);
if (item[X+3].Equals('t'))
{
_isTrue = true;
}
else
{
_isTrue = false;
}
Question question = new Question();
question.fact = fact;
question.isTrue = _isTrue;
loadedQuestions.Add(question);
}
X = X+1;
}
}
} while (TheString != null);
sr.Close();
}
}
but it gave me this error: IndexOutOfRangeException: Array index is out of range. and said the problem was on this line: if (item[X].Equals("/") && item[X+1].Equals("/") && item[X+2].Equals("/"))
I have no idea what the problem is... Any help is appriciated!
Answer by tanoshimi · Mar 19, 2017 at 09:02 AM
It would be helpful to know what the structure of your question file is, but your logic looks..... funky....
You're looping though every item in singleLines (which in turn is a list of items separated by a # from your questionbank file).
Then, you're looking whether the nth, n+1th, and n+2th character are all forward slashes and creating a question accordingly.
Because you increment X on every iteration of the loop, by the time you're loading the 100th question, say, you're checking whether the 100th, 101st, and 102nd character of that question are all forward slashes. Is that really what you meant?
The error message is saying that it's encountered a question that simply doesn't have enough characters to access the index requested.
If I had to guess, did you mean for line 31 to always check the first three characters of every question instead?
if (item[0].Equals("/") && item[1].Equals("/") && item[2].Equals("/")) ?
Your answer
Follow this Question
Related Questions
can't save values from another class to a list 1 Answer
Creating and destroying SELECTED objects and... sorting arrays?? 0 Answers
Wait For second realtime | Don't work ! 1 Answer
Multiple script instances in a scene but need to access certain ones 0 Answers
C# If string is equal to any in array 2 Answers