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.
See Implementation
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.