Hi,
I was wondering how you insert a small string into a larger one by replacing the elements in the string to maintain the length.
for example: "aaaaaaaa" insert "bbb" to element 3 to 6 = "aabbbaaa"
I know this is possible using split() and join(), just wondering if there's an easier way.
would appreciate any help :)
1