I am trying to stick one string into the middle of another string, ex:
String One = "MonkeyPony";
String Two = "Monkey";
How would I put String Two into String One so it would read something like MonkeMonkeyyPony?
What I'm trying to do is insert "Monkey" into the middle of "MonkeyPony" numerous times, so on the first time it would read "MonkeMonkeyyPony", and on the second time it would read "MonkeMonMonkeykeyyPony", etc.