I want to be able to specify an index in a string and remove it.
I have the following:
"Hello World!!"
I want to remove the 4th index (o in Hello). Here would be the end result:
"Hell World!!"
I've tried unset(), but that hasn't worked. I've Googled how to do this and that's what everyone says, but it hasn't worked for me. Maybe I wasn't using it right, idk.
substr. Get the first few charactes, get the last few characters after your index, then concatenate.unset(), but that hasn't worked. I've Googled how to do this and that's what everyone says, but it hasn't worked for me.