Insert Method Visual Basic has a string method named Insert. The value of strVar1. Insert(n, strVar2) is strVar1 with strVar2 inserted into it beginning at the nth position. For instance, if strVar1 = "John Kennedy" and strVar2 = "F. " then the value of strVar1.Insert(5, strVar2) is “John F. Kennedy”. Write a function named Embed that performs the same task as the Insert method (without using the Insert method). For instance, the value of Embed("John Kennedy", 5, "F. ") should be “John F. Kennedy”. The Embed function should use Exit Function to keep the program from crashing when the value of n is out of range.
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.