Description:
Removes a certain number of characters from a string starting from a given position.
This method has the same parameters of the SubString method and returns the string obtained by removing len characters from the original string starting from the position with index from, as in:
str = "What a nice day!"
str = str.RemoveSubString(8, 5) // str is "What a day!"
|