|
DiffMatchPatchDiffCommonSuffix Method
|
Determine the common suffix of two strings.
Namespace: GSF.TextAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.255-beta+d64b121002b51165b41b0dbf6ccf4c8d3895faa3
Syntaxpublic int DiffCommonSuffix(
string text1,
string text2
)
Public Function DiffCommonSuffix (
text1 As String,
text2 As String
) As Integer
public:
int DiffCommonSuffix(
String^ text1,
String^ text2
)
member DiffCommonSuffix :
text1 : string *
text2 : string -> int
function DiffCommonSuffix(text1, text2);
View SourceParameters
- text1 String
- First string
- text2 String
- Second string
Return Value
Int32The number of characters common to the end of each string
See Also