| VDataUtilityEscapedSplit Method | 
 Similar to split function, except it considers escape sequence
 
 
Namespace: ARPDev.DAVLIBAssembly: ARPDev.DAVLIB (in ARPDev.DAVLIB.dll) Version: 1.0.0.0 (1.0.0.0)
 Syntax
Syntaxpublic static List<string> EscapedSplit(
	string sPropertyValue,
	string sToken,
	string sEscapeToken = "\"
)
Public Shared Function EscapedSplit ( 
	sPropertyValue As String,
	sToken As String,
	Optional sEscapeToken As String = "\"
) As List(Of String)
public:
static List<String^>^ EscapedSplit(
	String^ sPropertyValue, 
	String^ sToken, 
	String^ sEscapeToken = L"\"
)
static member EscapedSplit : 
        sPropertyValue : string * 
        sToken : string * 
        ?sEscapeToken : string 
(* Defaults:
        let _sEscapeToken = defaultArg sEscapeToken "\"
*)
-> List<string> 
Parameters
- sPropertyValue
- Type: SystemString
 
- sToken
- Type: SystemString
 
- sEscapeToken (Optional)
- Type: SystemString
 
Return Value
Type: 
ListString Remarks
Remarks See Also
See Also