how to delete a single character from a string?

I want to delete a single character from a string in an exact position. Example: remove_n_char("hello",1)-> "ello"...

Best Answer

Answers

Sign In or Register to comment.