Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

String class: Difference between revisions

From Catglobe Wiki
Nguyenduyan (talk | contribs)
No edit summary
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:
|Name=<nowiki>String</nowiki>
|Name=<nowiki>String</nowiki>
|Description=<nowiki>The string object</nowiki>
|Description=<nowiki>The string object</nowiki>
|Constructors=
|InheritsFrom=object|Constructors=
{{CGscriptConstructors_Template|Parameters=
{{CGscriptConstructors_Template|Parameters=
{{CGscriptParameters_Template|Type=string|Name=<nowiki>value</nowiki>|Description=<nowiki>Value to give object</nowiki>}}
{{CGscriptParameters_Template|Type=string|Name=<nowiki>value</nowiki>|Description=<nowiki>Value to give object</nowiki>}}
Line 22: Line 22:
{{CGscriptParameters_Template|Type=string|Name=<nowiki>value</nowiki>|Description=<nowiki>Value to compare to</nowiki>|Comma=,}}{{CGscriptParameters_Template|Type=bool|Name=<nowiki>ignoreCase</nowiki>|Description=<nowiki>True to ignore case during comparison</nowiki>}}
{{CGscriptParameters_Template|Type=string|Name=<nowiki>value</nowiki>|Description=<nowiki>Value to compare to</nowiki>|Comma=,}}{{CGscriptParameters_Template|Type=bool|Name=<nowiki>ignoreCase</nowiki>|Description=<nowiki>True to ignore case during comparison</nowiki>}}
|Description=<nowiki>Returns true if the value specified occurs at the end of the string</nowiki>}}
|Description=<nowiki>Returns true if the value specified occurs at the end of the string</nowiki>}}
{{CGscriptMethods_Template|ReturnType=object|Name=<nowiki>this[] { get; }</nowiki>|Parameters=
{{CGscriptParameters_Template|Type=int|Name=<nowiki>index</nowiki>|Description=<nowiki>The index used to lookup the char at that index.</nowiki>}}
|Description=<nowiki>Get the char at the given index.</nowiki>}}
{{CGscriptMethods_Template|ReturnType=int|Name=<nowiki>IndexOf</nowiki>|Parameters=
{{CGscriptMethods_Template|ReturnType=int|Name=<nowiki>IndexOf</nowiki>|Parameters=
{{CGscriptParameters_Template|Type=string|Name=<nowiki>value</nowiki>|Description=<nowiki>Value to compare to</nowiki>}}
{{CGscriptParameters_Template|Type=string|Name=<nowiki>value</nowiki>|Description=<nowiki>Value to compare to</nowiki>}}
Line 44: Line 47:
{{CGscriptMethods_Template|ReturnType=string|Name=<nowiki>ToUpperInvariant</nowiki>|Description=<nowiki>Returns the string converted to its upper case variant using invariant culture</nowiki>}}
{{CGscriptMethods_Template|ReturnType=string|Name=<nowiki>ToUpperInvariant</nowiki>|Description=<nowiki>Returns the string converted to its upper case variant using invariant culture</nowiki>}}
|Properties=
|Properties=
{{CGscriptProperties_Template|ReturnType=int|Name=<nowiki>Length</nowiki>|HasGetter=1|Description=<nowiki>Length of the string</nowiki>}}
{{CGscriptProperties_Template|ReturnType=string|Name=<nowiki>ObjectTypeName</nowiki>|HasGetter=1|Description=<nowiki>The name of the type of object.</nowiki>}}
{{CGscriptProperties_Template|ReturnType=string|Name=<nowiki>ObjectTypeName</nowiki>|HasGetter=1|Description=<nowiki>The name of the type of object.</nowiki>}}
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Description=<nowiki>Get information about this class.</nowiki>}}
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Inherited=object|Description=<nowiki>Get information about this class.</nowiki>}}
}}
}}
=== <span style="color:#DF8621">'''Examples'''</span> ===
<source lang="javascript">
String a = new String ("Catglobe System Setup");
print(a.Contains("globe"));//True
print(a.IndexOf("t"));//2
print(a.IndexOf("t",5));//12
print(a.LastIndexOf("t"));//18
print(a.LastIndexOf("t",17));//12
print(a.StartsWith("c"));// False
print(a.StartsWith("c", true));// True
print(a.EndsWith("P"));// False
print(a.EndsWith("p", true));//True
print(a.ToLowerInvariant());//catglobe system setup
print(a.ToUpperInvariant());//CATGLOBE SYSTEM SETUP
</source>

Latest revision as of 08:39, 10 September 2020

String



The string object

Parent class

Inherits from object

Constructors

  • (string value "Value to give object") - New object with the given value

Methods

  • number CompareTo(string value "Value to compare to") - Compare to object. See ArrayConstant.OrderBy
  • number CompareToIgnoreCase(string value "Value to compare to") - Compare to object. See ArrayConstant.OrderBy
  • bool Contains(string value "Value to compare to") - Returns true if the value specified occurs in the string
  • bool EndsWith(string value "Value to compare to") - Returns true if the value specified occurs at the end of the string
  • bool EndsWith(string value "Value to compare to", bool ignoreCase "True to ignore case during comparison") - Returns true if the value specified occurs at the end of the string
  • object this[] { get; }(int index "The index used to lookup the char at that index.") - Get the char at the given index.
  • int IndexOf(string value "Value to compare to") - Returns the 0-based index of where the value is to be found in the string, or -1
  • int IndexOf(string value "Value to compare to", int startIndex "The search starting position") - Returns the 0-based index of where the value is to be found in the string, or -1
  • int LastIndexOf(string value "Value to compare to") - Returns the 0-based index of where the value is to be found in the string, or -1
  • int LastIndexOf(string value "Value to compare to", int startIndex "The search starting position") - Returns the 0-based index of where the value is to be found in the string, or -1
  • bool StartsWith(string value "Value to compare to") - Returns true if the value specified occurs at the start of the string
  • bool StartsWith(string value "Value to compare to", bool ignoreCase "True to ignore case during comparison") - Returns true if the value specified occurs at the start of the string
  • string ToLowerInvariant() - Returns the string converted to its lower case variant using invariant culture
  • string ToString() - The string representation of the object.
  • string ToUpperInvariant() - Returns the string converted to its upper case variant using invariant culture

Properties

  • int Length { get; } - Length of the string
  • string ObjectTypeName { get; } - The name of the type of object.
  • (From object) TypeInformation TypeInformation { get; } - Get information about this class.