Explanation
Concatenation is the operation of joining two things together. For example, the strings "foo" and "bar" may be concatenated to give "foobar". Arrays can also be concatenated by using addarray.
String Concatenation
In GScript, there are only four string concatenation operators. These operators are @, SPC, TAB, and NL.- @ joins two strings together, without anything in between.
- SPC joins two string together with a space.
- TAB joins two strings together with a tab space.
- NL joins two strings together with a line break.
Example
this.value = "foo" @ "bar"; // producing "foobar" this.value = "foo" SPC "bar"; // producing "foo bar" this.value = "foo" TAB "bar"; // producing "foo bar" this.value = "foo" NL "bar"; // producing "foo bar"
Applied example:
//#CLIENTSIDE function onCreated() { this.suggestedattire = "scarf, gloves, parka, and hat."; this.welcomemessage = "It is snowing, so you may want to wear your" SPC this.suggestedattire; this.goodbyemessage = "Come again tomorrow for more weather information!"; echo("Hello, " @ player.account @ ". " @ this.welcomemessage NL this.goodbyemessage); }
Categories
CategoryMiscellaneous
There are no comments on this page. [Add comment]