Remove Method Visual Basic has a string method named Remove. The value of strVar. Remove(n, m) is strVar with m consecutive characters from it deleted beginning with the character in the nth position. For instance, if strVar = "President" then the value of strVar.Remove(4, 2) is “Present”. Write a function named Eliminate that performs the same task as the Remove method (without using the Remove method). For instance, the value of Eliminate("President", 4, 2) should be “Present”.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.