  | MvOperationsLkExtract(String, String, String, Int32, Int32) Method | 
Linkar Framework for .NET and Core
            Extracts a field, value or subvalue from a dynamic array.
            
Namespace: Linkar.FunctionsAssembly: Linkar.Functions (in Linkar.Functions.dll) Version: 2.3.1
Syntaxpublic static string LkExtract(
	string str,
	string lstDicts,
	string field,
	int value = 0,
	int subvalue = 0
)
Public Shared Function LkExtract ( 
	str As String,
	lstDicts As String,
	field As String,
	Optional value As Integer = 0,
	Optional subvalue As Integer = 0
) As String
public:
static String^ LkExtract(
	String^ str, 
	String^ lstDicts, 
	String^ field, 
	int value = 0, 
	int subvalue = 0
)
static member LkExtract : 
        str : string * 
        lstDicts : string * 
        field : string * 
        ?value : int * 
        ?subvalue : int 
(* Defaults:
        let _value = defaultArg value 0
        let _subvalue = defaultArg subvalue 0
*)
-> string Parameters
- str  String
 - The source string from which data is extracted.
 - lstDicts  String
 - Dictionaries list on which the field specified argument will be searched.
 - field  String
 - The dictionary name of the attribute to extract.
 - value  Int32  (Optional)
 - The multivalue position to extract.
 - subvalue  Int32  (Optional)
 - The subvalue position to extract.
 
Return Value
StringA new string with the extracted value.
Examplestring result = MvOperations.LkExtract("CUSTOMER UPDATE 2þADDRESS 2þ444","NAMEþADDRþPHONE", 1);No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
            String result = MvOperations.LkExtract("CUSTOMER UPDATE 2þADDRESS 2þ444","NAMEþADDRþPHONE", 1)
            
See Also