If I have two strings .. say
string1="Hello Dear c'Lint"
and
string2="Dear"
.. I want to Compare the strings first and delete the matching substring ..
the result of the above string pairs is:
"Hello c'Lint"
(i.e, two spaces between "Hello" and "c'Lint")
for simplicity, we'll assume that string2 will be the sub-set of string1 .. (i mean string1 will contain string2)..