Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
  • Help Room /
avatar image
0
Question by AnyOtherProgrammer · Mar 19, 2017 at 08:53 AM · scripting problemarraystringdebugchar

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!

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0

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("/")) ?

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

126 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

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


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges