Util.Split Method

Returns a list that contains the substrings, in a specific string, that are delimited by the specified character.

Namespace:  Microsoft.BusinessData.Infrastructure
Assembly:  Microsoft.BusinessData (in Microsoft.BusinessData.dll)

Syntax

'Declaration
Public Shared Function Split ( _
    delimiter As Char, _
    str As String _
) As IList(Of String)
'Usage
Dim delimiter As Char
Dim str As String
Dim returnValue As IList(Of String)

returnValue = Util.Split(delimiter, _
    str)
public static IList<string> Split(
    char delimiter,
    string str
)

Parameters

  • delimiter
    Type: System.Char

    The character that specifies the delimiter to use to split the string into substrings.

Return Value

Type: System.Collections.Generic.IList<String>
A list of substrings delimited by the specified character.

See Also

Reference

Util Class

Util Members

Microsoft.BusinessData.Infrastructure Namespace