| MvFunctionsLkCount Method |
Text function that counts the occurrences of a substring inside a string.
Namespace:
LinkarCommon
Assembly:
LinkarClientCOM (in LinkarClientCOM.dll) Version: 2.1.0.0 (2.1.0.0)
Syntax public int LkCount(
string str,
string delimiter
)
Public Function LkCount (
str As String,
delimiter As String
) As Integer
public:
int LkCount(
String^ str,
String^ delimiter
)
member LkCount :
str : string *
delimiter : string -> int
Parameters
- str
- Type: SystemString
The string you are going to count. - delimiter
- Type: SystemString
The separator you are going to count.
Return Value
Type:
Int32
The number of occurrences found.
See Also