Takes an escaped string and splits it into an IEnumerable of seperate strings

Namespace: DotNetNuke.Common.Utilities
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public static IEnumerable<string> Seperate(
	string combinedString,
	char seperator
)
Visual Basic
Public Shared Function Seperate ( 
	combinedString As String,
	seperator As Char
) As IEnumerable(Of String)

Parameters

combinedString
Type: System..::..String
The string to seperate
seperator
Type: System..::..Char
The character on which to split

Return Value

IEnumerable of all the seperated strings

Remarks

The escape character is '\'

See Also