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 /
avatar image
0
Question by zakdank · Nov 18, 2017 at 12:47 PM · textarrayssplit2d array

Splitting text into 2D array

This is probably something super simple but I have spent too much time trying to get it to store correctly.


Basically I have PHP script that returns rows from an SQL database. The format for the data is like so;

 "world server 1|127.0.0.1|7544@world server 2|127.0.0.1|7545@"

What I want to do is split the string into an array so that I can call for, say, the port of the first worldserver. For example worlds[0][2] would return 7544.


What I have tried so far is not working;

     private string[][] worldData;
     private string phpfileURL = phpLocation + "worldSelect.php";
 
     public void fillWorldList()
     {     
         worldList.options.Clear();
         StartCoroutine(getWorlds());
     }
 
     private IEnumerator getWorlds()
     {
         WWW worlds = new WWW(phpfileURL);
 
         yield return worlds;
 
         parseWorldData(worlds.text);
 
     }
 
     private void parseWorldData(string worldsdata)
     {
         string[] lines = worldsdata.Split('@');
         string[] values = worldsdata.Split('|');
 
         worldData = new string[lines.Length][3];
 
         for (int i = 0; i < lines.Length; i++)
         {
             for (int j = 0; j < values.Length; j++)
             {
                 worldData[i][j] = values[j];
 
                 Debug.Log(worldData[i][j].ToString());
             }
         }
     }

It throws an error:

 NullReferenceException: Object reference not set to an instance of an object
 (wrapper stelemref) object:stelemref (object,intptr,object)
 WorldSelect.parseWorldData (System.String worldsdata) (at Assets/Scripts/SQL/WorldSelect.cs:41)
 WorldSelect+<getWorlds>c__Iterator0.MoveNext () (at Assets/Scripts/SQL/WorldSelect.cs:26)
 UnityEngine.SetupCoroutine.InvokeMoveNext (IEnumerator enumerator, IntPtr returnValueAddress) (at C:/buildslave/unity/build/Runtime/Export/Coroutines.cs:17)

It's probably something really simple but I just can't figure it out and can't seem to find examples of something similar being done. Thanks in advance.

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
Best Answer

Answer by Hellium · Nov 18, 2017 at 02:48 PM

 private void parseWorldData(string worldsdata)
 {
         string[] worlds = worldsdata.Split(new char[]{'@'}, StringSplitOptions.RemoveEmptyEntries);
         worldData = new string[worlds.Length][];
         
         for( int i = 0 ; i < worlds.Length ; ++ i)
         {
             worldData[i] = worlds[i].Split( new char[]{'|'}, StringSplitOptions.RemoveEmptyEntries ) ;
             
             for( int j = 0 ; j < worldData.Length ; ++ j)
             {
                  Debug.Log( worldData[i][j] ) ;
             }
         }
 }
Comment
Add comment · Show 1 · 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
avatar image zakdank · Nov 18, 2017 at 03:00 PM 0
Share

I actually just figured this out now and was co$$anonymous$$g to post a reply but you beat me to it. Thanks!

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

75 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

Related Questions

how to assign string value of an array into gameobject text? 2 Answers

How to split a string into array? 2 Answers

Javascript 2D arrays: null values and slicing 1 Answer

Splitting Text 2 Answers

Array Within Index 1 Answer


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