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