我想兩個字符串如何使用C#或jquery匹配段落中的重複單詞?
// C# code
string str1,str2;
我要檢查五個字在字符串str1中前十五字
str1="Musician Ben Sollee on the Ravages of Coal and the Wonders of the Bicycle"
str2="There is Wonders of Musician Ben Sollee on the Ravages of Coal"
我想跳過上面串像動詞對比之間的匹配常用詞「的」,「上」,「該」等..只檢查沒有動詞的詞...
從上面的字符串我想比較st R2與STR1如果它包含五個重複單詞,然後給郵件包含一些重複的話..
我如何比較,並檢查它包含重複。我很滿意jQuery或C#的答案。
感謝很多@ColinE爲偉大的答案.. –
任何.NET 3.5語言將支持這個。只需包含system.linq – ColinE
Hello @ColinE,如果我設置了字符串str1Words =「官方Facebook iPad App即將推出App Store官方Facebook iPad App即將推出App Store #use」;和字符串[] str2Words =「應用程序即將推出官方Facebook iPad商店應用程序官方」,那麼它返回超過5個計數.. –