StringHelper Split Method CleanCode C# Libraries v1.2.03 API

Namespace: CleanCode.Data
Assembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public static string[] Split(
	string expression,
	char splitCharacter
)

Return Value

Array split intelligently on the given splitCharacter.
Remarks

Builds upon the concept of OnlineSplit( Char ) by splitting on a specified character (e.g. comma) only if the comma is not nested inside () or [] or quotes.
See Also