Posts: 153
Threads: 64
Joined: Nov 2013
Still, Didn't get the meaning of "Strings". Maybe because i am not english ? Anyway, Can anyone tell me it's meaning and give me the wiki also.
Posts: 223
Threads: 68
Joined: Apr 2014
Reputation:
0
String is used for format.
Format is used to store variables, and displays the text with the variables.
While SendClientMessage just displays normal text.
Posts: 260
Threads: 4
Joined: Jun 2013
Reputation:
0
There is a sticky thread at the top, you could've asked there. What you are asking is a minor question... anyways..
String is an array where you can store a text.
Creds to Konstantinos for teaching this to me.
EDIT::
@above,
strings don't have to be formatted. I can store a text in a string, and leave it just like that.
Posts: 450
Threads: 10
Joined: May 2014
Reputation:
0
The word "String" means series of characters ,like a sentence Example : "Hello Le3at"
Now,what is characters ? ,Characters are letter,numbers,punctuators etc. Exmple : 'H' <-- is a character 'E' <-- is a character ,'L' <-- is a character,'L' <-- is a character ,'O' <-- is a character
when we make a series/chain of it ,it becomes a string. Example : "Hello"
Therefore , series of characters is known as String.
Alphanumeric vales can also be store in a string ,such as new name[128] ; name = "Le3at"
Posts: 260
Threads: 4
Joined: Jun 2013
Reputation:
0
23.05.2014, 14:38
(
Последний раз редактировалось NaClchemistryK; 23.05.2014 в 14:38.
Причина: Les typings mistakingzzz
)
You should stop labering stuff you don't know about. And don't show off while you say wrong stuff. String doesn't mean "a series of characters". It is incorrect what you said, totally.
Posts: 260
Threads: 4
Joined: Jun 2013
Reputation:
0
scripting talent. Which you don't have. Continue this conversation in pm, this is not hte place where you can fight.
Posts: 153
Threads: 64
Joined: Nov 2013
Quote:
Originally Posted by Rittik
The word "String" means series of characters ,like a sentence Example : "Hello Le3at"
Now,what is characters ? ,Characters are letter,numbers,punctuators etc. Exmple : 'H' <-- is a character 'E' <-- is a character ,'L' <-- is a character,'L' <-- is a character ,'O' <-- is a character
when we make a series/chain of it ,it becomes a string. Example : "Hello"
Therefore , series of characters is known as String.
Alphanumeric vales can also be store in a string ,such as new name[128] ; name = "Le3at"
|
And how will the computer know that name is Le3aT ? Can you give me an example, explaining every word, please ?
Posts: 450
Threads: 10
Joined: May 2014
Reputation:
0
In computer programming, a string is traditionally a sequence of characters, either as a literal constant or as some kind of variable. The latter may allow its elements to be mutated and the length changed, or it may be fixed (after creation). A string is generally understood as a data type and is often implemented as an array of bytes (or words) that stores a sequence of elements, typically characters, using some character encoding. A string may also denote more general arrays or other sequence (or list) data types and structures.
-From wikipedia