I have two strings that are 90% equal but I want to ignore the 10% of it where they are not equal. For example.
String s1 = "Hi my name is Bob. About me: Useless information. I am a male."
String s2 = "Hi my name is Bob. About me: Different useless information. I am a male."
Even-though these two strings are different, I want a way to compare the strings and return true that they are equal. What is the best way to approach this problem. Are there any string utilities that already exist that can help me achieve this effect?