I need help in PHP Script.
I have two strings.
$string1 = "asdfgf";
$string2 = "asdfgasdg";
After removing the same character from both string once,
$string1 = "f";
$string2 = "asdg";
Another Two Strings example
$string1 = "sthnfr";
$string2 = "iserr";
Output
$string1 = "thnf"; // s and r removed
$string2 = "ier"; // s and r removed
I tried str_replace which replace all the all the characters. Thanks for your helps
$string1 = "asdfgf";$string2 = "asdfgasdg";replacement since it seemed like a direct position character matching, so if there are other instances, kindly add them.. – Nonym Jan 7 '12 at 16:09sandrto the string/character-removal function, given that they're not connected? Also, if this a 'school game' that you '[are] trying to do,' what have you attempted so far and what went wrong? – David Thomas Jan 7 '12 at 16:22