You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

The string collection object represents an array of text values and includes functions to select items in the array


Properties

NameDescriptionReturn TypeUsage Example
CountReturns number of items in collectionInteger






Functions

Name and ParametersDescriptionReturn TypeUsage Example
First()Gets first item from the collectionString

First(string operator, string value, bool ignoreCase)

Gets first matching item from the collection using given operator. See list of valid operators below.

String

IsEmpty()Returns true if there are no items in the collection Boolean

Item(integer index)Gets an item in the collection by zero-based index numberString

Last()Gets last item from the collectionString

Last(string operator, string value, bool ignoreCase)Gets last matching item from the collection using given operator. See list of valid operators below.String

Where(string operator, string value, bool ignoreCase)Gets matching items from the collection using given operator. See list of valid operators below.String Collection






Operators

  • Contains
  • DoesNotContain
  • StartsWith
  • DoesNotStartWith
  • EndsWith
  • DoesNotEndWith
  • IsRegexMatch
  • IsNotRegexMatch


  • No labels