So this is the example:
string one = "Test123";
string two = "123Test12345"
I want to compare the strings and replace it the characters by using indexes. So the string "two" becomes string "one" with placing 123 in front of the Test123 and 45 behind the Test123. Is there anyway to that?