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 byerdelen · Jun 10, 2011 at 10:07 AM · arrayvariablerandomstringprint

String Access problem

Hi community,

I have such a problem:

I have a code such:

var question = 0;
var val1 ="Sıfır";
var val2 = "Nul";
var val3 = "Bir";
.
.
.
Till 405 numbers

And I will random a number:

question = Random.Range(1,405);

And I want to print one of them such as like:

print("val"+question);

So I want to return the value of for example val2 and the printed one will be "Nul"

But always the returning result is such as "val40", "val3"... instead of "Sifir", "Bir"

How can I access the variable in those strings with such an example of this print example?

I will put around 3000 values so is is not a good idea to use if comments that will make my job so hard.

Sorry for my writing that I dont know how to write proper in Answers, and thank you for your help from now

Comment
Add comment · Show 1
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 crazyKnight · Jun 10, 2011 at 10:23 AM 0
Share

question here is an integer are you are trying to print string with it...

1 Reply

· Add your reply
  • Sort: 
avatar image
2
Best Answer

Answer by crazyKnight · Jun 10, 2011 at 10:22 AM

Why dont you use an array for the val declaration,because what you are doing is completely illogical, try something like this

 var val : String[];    //declare these values in the inspector 
 private var question : int;
 
 function Update()
 {
     if(print)  // your condition to print
     {
         question = Random.Range(0,val.length);
         print("val "+val[question]);
     }
 }
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 byerdelen · Jun 10, 2011 at 10:24 AM 0
Share

Thank you very much Now I see I was using the wrong approach

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

2 People are following this question.

avatar image avatar image

Related Questions

Setting float variable to an Array value 1 Answer

how to randomly pick a string from an array 3 Answers

Referencing private string for array name 2 Answers

How to randomize an array of Strings? 2 Answers

Assigning array element to variable 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