LumiSoft Mail Server User API
SplitQuotedString Method (text, splitChar, unquote)
Namespaces > LumiSoft.Net > TextUtils > SplitQuotedString(String, Char, Boolean)
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,
	bool unquote
)
Public Shared Function SplitQuotedString ( _
	text As String, _
	splitChar As Char, _
	unquote As Boolean _
) As String()
public:
static array<String^>^ SplitQuotedString (
	String^ text, 
	wchar_t splitChar, 
	bool unquote
)
Parameters
text (String)
Text to split.
splitChar (Char)
Char that splits text.
unquote (Boolean)
If true, splitted parst will be unqouted if they are qouted.
Return Value

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

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