Takes an escaped string and splits it into an IEnumerable of seperate strings
Namespace: DotNetNuke.Common.UtilitiesAssembly: DotNetNuke (in DotNetNuke.dll)
Syntax
C# |
---|
public static IEnumerable<string> Seperate( string combinedString ) |
Visual Basic |
---|
Public Shared Function Seperate ( combinedString As String ) As IEnumerable(Of String) |
Parameters
- combinedString
- Type: System..::..String
The string to seperate
Return Value
IEnumerable of all the seperated strings
Remarks
The escape character is '\', the seperator char is ','