I have noticed that there is no direct solution but also I can think of at least two ways of implementing it.
What I'd like to know what is the best solution performance-wise?
Turn a string into and array, use splice, return to string
Use string s = s.substring(0,i)+s.substring(i,s.lenght)
Something I've missed
EDIT: What's wrong with my question and is there some faster way to do this? I want to do this around a tousand times on a string so I need it to be fast