| MvOperationsLkDCount Method |
Linkar Framework for .NET and Core
Counts the delimited substrings inside a string.
Namespace: Linkar.FunctionsAssembly: Linkar.Functions (in Linkar.Functions.dll) Version: 2.3.1
Syntax public static int LkDCount(
string str,
string delimiter
)
Public Shared Function LkDCount (
str As String,
delimiter As String
) As Integer
public:
static int LkDCount(
String^ str,
String^ delimiter
)
static member LkDCount :
str : string *
delimiter : string -> int
Parameters
- str String
- Source string of delimited fields.
- delimiter String
- The separator character(s) used to delimit fields in the string.
Return Value
Int32The number of occurrences found.
Example int result = MvOperations.LkDCount("CUSTOMER UPDATE 2þADDRESS 2þ444", "þ");
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.
Integer result = MvOperations.LkDCount("CUSTOMER UPDATE 2þADDRESS 2þ444", "þ")
See Also