Difference between revisions of "ObjectType:mutablestring"

From Lavish Software Wiki
Jump to navigation Jump to search
 
Line 30: Line 30:
  
 
== See Also ==
 
== See Also ==
* [[LavishScript:Object Types|Object Types]]
+
{{LavishScript:ObjectType}}
 
 
[[Category:LavishScript]]
 
[[Category:LavishScript Object Types]]
 

Latest revision as of 15:08, 8 July 2018

Description

Object Type Vitals
mutablestring
Defined By LavishScript
Inherits string
Reduces To the stored text
Variable Object Type mutablestring
Uses Sub-Types no
C/C++ Type utf8string *

A string, also known as text is a series of consecutive characters. Mutable indicates that the string may be modified.

Members

  • string String: Retrieves the appropriate string object from this mutablestring

Methods

  • Set[text]: Sets the value of the string to this new text
  • Concat[text]: Concatenates the string with this new text
  • ToUpper: Converts the string to upper case
  • ToLower: Converts the string to lower case

Declaring string Variables

  • Any string variable is a mutablestring
  • declare Food string "Pizza"
  • declare Word string script

Setting string Variables

  • string1:Set[This is string 1]
  • string2:Set[${string3}]

Comparing Strings

declare name1 string "fred"
declare name2 string "george"
if ${name1.Equal[${name2}]}
   {
    echo We're both named fred!
   }

See Also

LavishScript Object Types