| MvFunctionsLkExtract Method (String, Int32, Int32, Int32) |
Text Function that extracts a field, value or subvalue from a dynamic array.
Namespace:
LinkarCommon
Assembly:
LinkarClientCOM (in LinkarClientCOM.dll) Version: 2.1.0.0 (2.1.0.0)
Syntax public string LkExtract(
string str,
int field,
int value = 0,
int subvalue = 0
)
Public Function LkExtract (
str As String,
field As Integer,
Optional value As Integer = 0,
Optional subvalue As Integer = 0
) As String
public:
String^ LkExtract(
String^ str,
int field,
int value = 0,
int subvalue = 0
)
member LkExtract :
str : string *
field : int *
?value : int *
?subvalue : int
(* Defaults:
let _value = defaultArg value 0
let _subvalue = defaultArg subvalue 0
*)
-> string
Parameters
- str
- Type: SystemString
The string on which you are going to extract a value. - field
- Type: SystemInt32
The position of the attribute where you want to extract. - value (Optional)
- Type: SystemInt32
The multivalue position where you want to extract. - subvalue (Optional)
- Type: SystemInt32
The subvalue position where you want to extract.
Return Value
Type:
String
A new string with the extracted value.
See Also