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 Caiuse · Jun 20, 2011 at 09:16 AM · arrayplayerprefindexof

Find all strings beginning with specified characters

Hi there, I've been trying to grab a list of all the PlayerPref strings that beging with "player". I found that:

 var test = stringToSearch.IndexOf("player");

is a possible way of searching for strings, but i'm not entirely sure on the way in which this works.

or even substring method.

Anyone know how I can achieve this? Thanks - C

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 CHPedersen · Jun 20, 2011 at 09:59 AM

IndexOf returns the index of the first occurrence of the string you supply. A string in .Net is actually implemented as a character array, so when the method says "IndexOf", it really means the index of the first character in the array that is the string, where the substring you're searching for was first found.

So if you have this string:

 string example = "This_string_says_player_in_it";

And you do this:

 int index = example.IndexOf("player");

Then the variable index gets set to 17, because that's the array index position of the 'p' in "player". Because strings are really character arrays, you can actually index into a string directly, if you wanted to:

 char indexedInto = example[17];

Is perfectly valid code, and sets the char indexedInto to the value 'p', because as we've previously shown, that's the character found at index position 17.

That's how strings and IndexOf works, anyway. I'm not sure how you could use that to obtain all PlayerPref strings that begin with the substring "player". Are you using the method "`PlayerPrefs.GetString()`"?

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 Caiuse · Jun 20, 2011 at 10:04 AM 0
Share

Thanks for the breakdown, I'm using 'PlayerPrefs.GetString()' method, I've tried various things such as 'StartWith' function which is also valid, but it's not valid with the function 'PlayerPrefs.GetString()', I will see how I could work with 'IndexOf'.

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

Search a substring in an array of Strings 1 Answer

IndexOf returning -1 c# 2 Answers

Vector3 arrays in C# 0 Answers

Questions about a Weapon Switch script. 1 Answer

BEST way to get velocity Without rigidbody? 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