01.03.2015, 19:14
Of what I've read, you make a string by making an array.
Let's say
Then you store strings in this. Let's say
But how do you GET this string then?
newString[0] will get the first letter, but how do you get the whole "Hello everybody"
Am I doing strings wrong, or am I just a noob? :P
-Thanks in forwards
Let's say
Код:
new newString[128];
Код:
newString = "Hello everybody";
newString[0] will get the first letter, but how do you get the whole "Hello everybody"
Am I doing strings wrong, or am I just a noob? :P
-Thanks in forwards