VirtualString.Split(String, StringArray) Method

Top 

Description

Splits the VirtualString into multiple elements based on the delimiter specified by delimiter, and populates results with those elements.

 

Timing Precision Mode

This page describes functionality in nanosecond timing precision mode.

Click here to see the documentation for this object in millisecond timing precision mode.

 

Method Signature

VirtualString.Split(

String delimiter,


StringArray results)

 

 

Arguments

delimiter


Description:

The delimiter used to separate the parts of the String to split. If a multiple-character String is specified, each character will be used as a possible delimiter.

 

 

results


Description:

A StringArray to hold the results of the split.

 

 

 

Return Value

Type:

number

 

 

Returns the number of elements in the newly populated results.

 

Syntax

myVariable1 = myString1.ToLower.Split(myString2, myStringArray1);

 

 

See also

VirtualString Object

VirtualString.Split