Text Function that extracts the codes from an operation resultant string
* lkString
|
string
|
|
text string on which you are going to extract
|
.NET Framework, Core & Mono C#
string[] result = DataFunctions.GetTotalRecordsFromLkString(lkString);
|
.NET Framework, Core & Mono VB
Dim result() As String = DataFunctions.GetTotalRecordsFromLkString(lkString)
|
String[] result = DataFunctions.GetTotalRecordsFromLkString(lkString);
|
int count;
char** result = LkGetTotalRecordsFromLkString(lkString, &count);
|