In my script i have a public text, and a variable which shows how many characters that text has. It looks like this:
public int charsInText;
public Text textToWrite;
void Start () {
charsInText = textToWrite.text.Length;
}
How can find a specific character in the text by number?
Some pseudo coding as example:
text.findCharacter[4]
so the 4 character is chosen.