Difference between revisions of "Category:LSL String"
Jump to navigation
Jump to search
Line 58: | Line 58: | ||
<div style="padding: 0.5em;"> | <div style="padding: 0.5em;"> | ||
<pre> | <pre> | ||
</pre> | </pre> | ||
</div></div> | </div></div> |
Revision as of 02:39, 17 March 2007
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
A string is a text data. String values are enclosed in quotes when you define them. You can use every letter or number in a string!
String examples:
"Hello Avatar!" "Yes" "No" "It's 10 o'clock." "I am 21 years old!" EOF
Variable: string name;
string name;
Declares a variable of type string named name, with the value ""
• variable | name | – | variable name |
Variable: string name = value;
string name = value;
Declares a variable of type string named name, with the value value.
• variable | name | – | variable name | |
• expression | value | – | string expression or constant |
Typecast: (string)value
string name;
Converts value to a value of type string.
• expression | value | – | variable name |
Examples
integer int = 48934; string str = (string)int; string str_2; str_2 = str;
Useful Functions
Subcategories
This category has the following 2 subcategories, out of 2 total.
Pages in category "LSL String"
The following 46 pages are in this category, out of 46 total.