Text Function that extracts a field, value or subvalue from a dynamic array.
* str
|
string
|
|
the string on which a value is to be extracted
|
* lstDicts
|
string
|
|
dictionaries list on which the field specified argument will be searched
|
* field
|
Numeric
string
|
|
the position or the dictionary name of the attribute where it is to be extracted
|
value
|
Numeric
|
|
the multivalue position where it is to be extracted
|
subvalue
|
Numeric
|
|
the subvalue position where it is to be extracted
|
.NET Framework, Core & Mono C#
|
string result = MvFunctions.LkExtract(str, field, value, subvalue);
string result = MvFunctions.LkExtract(str, lstDicts, field, value, subvalue);
|
.NET Framework, Core & Mono VB
|
Dim result As String = MvFunctions.LkExtract(str, field, value, subvalue)
Dim result As String = MvFunctions.LkExtract(str, lstDicts, field, value, subvalue)
|
Java
|
String result = MvFunctions.LkExtract(str, field, value, subvalue);
String result = MvFunctions.LkExtract(str, lstDicts, field, value, subvalue);
|
C
|
char* result = LkExtract(str, field, value, subvalue);
|