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: Stringstring to be searched
- keystr
- Type: Stringstring indicating the start of the substring combination
- separator
- Type: Stringstring ending the whole substring, not included in returned string!
- includeKeyStr
- Type: Booleanif includeKeyStr is set to true, include keystr in returned string
Returns
String
the fetched substring