I have two strings. String A: "The quick brown fox" Strong B: "The quick brown fox jumps over the lazy dog."
String B will always contain string A verbatim. There will never be a "quick black fox" or a "quick and speedy brown fox".
How do a get a "String C" of the difference "jumps over the lazy dog."?
Thanks!
lor something) and run a loop that sees ifstrA.substring(0,l) == strB.substring(0,l)untill it doesnt. Then, returnstrB.substring(l);. – Alxandr Nov 5 '11 at 23:32differenceString = string2.replace(string1,"");o_o? – Joseph Marikle Nov 5 '11 at 23:44