Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Next revision Both sides next revision
string_type [2013/08/06 21:55]
admin created
string_type [2016/05/01 01:38]
hermann [EGO Script]
Line 2: Line 2:
  
 A [[wp>​String_(computer_science)|string]] is a sequence of arbitrary characters. A [[wp>​String_(computer_science)|string]] is a sequence of arbitrary characters.
- 
-Strings can be automatically converted to [[Name Type]] (and vice-versa),​ to [[Double Type]] (and vice-versa) and to [[Index Or Name Type]] (and vice-versa). 
  
 ===== GUI Editor ===== ===== GUI Editor =====
Line 12: Line 10:
  
 Strings are sequences of any characters enclosed by double quotes '"'​. Strings are sequences of any characters enclosed by double quotes '"'​.
 +
 +<code cpp>"​Amazon"</​code>​
 +
 +<code cpp>"​North"</​code>​
 +
 +<code cpp>"​This is a example of string"</​code>​
 +
 +<code cpp>"​landscape_123 ​      "</​code>​
 +
 +<code cpp>"​x1_and_a_name"</​code>​
 +
 +<code cpp>"​string with \"​double quotes\""</​code>​
 +
 +A string can be any size long and it can also span across several lines.
  
 <code cpp> <code cpp>
-"​Amazon"​ +"This is an example of a very long string 
-"​North"​ +with multiple lines. 
-"This is example of string" +Note that line breaks do not need to marked using any special syntax."
-"​landscape_123 ​      "​ +
-"​x1_and_a_name"+
 </​code>​ </​code>​
 +===== Automatic Conversions =====
 +
 +  * **Converted from**: [[Real Value Type]], [[Integer Value Type]], [[Non Negative Integer Value Type]], [[Positive Integer Value Type]], [[Log Tag Type]], [[Name Type]], [[Boolean Value Type]], [[Map Filename Type]], [[Lookup Table Filename Type]], [[Table Filename Type]], [[Weights Filename Type]] and [[Table Value Type]].
  
-A string can be any size long.+  * **Converted to**: [[Name Type]], [[Real Value Type]], [[Index Or Name Type]], [[Map Filename Type]], [[Lookup Table Filename Type]], [[Table Filename Type]], [[Weights Filename Type]], [[Tuple Type]] and [[Table Value Type]].