fetchSubstr(String, String, String, Boolean) Method

fetches substring starting after keystr and ending with separator from theString, case insensitive !! if separator is "" then fetch to end of string
Namespace: DBaddinAssembly: DBaddin in (DBaddin.dll)

Syntax

public static string fetchSubstr(
	string theString,
	string keystr,
	string separator,
	bool includeKeyStr
	)

Parameters

theString
Type: String
string to be searched
keystr
Type: String
string indicating the start of the substring combination
separator
Type: String
string ending the whole substring, not included in returned string!
includeKeyStr
Type: Boolean
if includeKeyStr is set to true, include keystr in returned string

Returns

String
the fetched substring