i am looking for a longest common words c# implementation. Most of the samples i have came across are comparing character by character.
in otherwords,
string1 = access
string2 = advised
should return null output from the function
any sample codes?
If by word you mean these letter things, seperated from the others by punktuation, try this:
This probably is not the most elegant way to do it, but it works for me. =)