commonOverlap

Determine if the suffix of one string is the prefix of another. @param text1 First string. @param text2 Second string. @return The number of characters common to the end of the first string and the start of the second string.

int
commonOverlap
(
string text1
,
string text2
)

Meta