|
DiffMatchPatchDiffCommonSuffix Method
|
Determine the common suffix of two strings.
Namespace: GSF.TextAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.253-beta+ffb7163c9e3b771705bc5b9aa3f09870f2cb9e2c
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