LumiSoft Mail Server User API
SplitQuotedString Method (text, splitChar)
Namespaces > LumiSoft.Net > TextUtils > SplitQuotedString(String, Char)
Splits string into string arrays. This split method won't split qouted strings, but only text outside of qouted string. For example: '"text1, text2",text3' will be 2 parts: "text1, text2" and text3.
Syntax
C#Visual BasicManaged C++
public static string[] SplitQuotedString (
	string text,
	char splitChar
)
Public Shared Function SplitQuotedString ( _
	text As String, _
	splitChar As Char _
) As String()
public:
static array<String^>^ SplitQuotedString (
	String^ text, 
	wchar_t splitChar
)
Parameters
text (String)
Text to split.
splitChar (Char)
Char that splits text.
Return Value

[Missing <returns> documentation for M:LumiSoft.Net.TextUtils.SplitQuotedString(System.String,System.Char)]

Assembly: LumiSoft.Net Version: 2.0.2636.18419 (Module: LumiSoft.Net)