Description

Returns a new string in which a specified string is inserted at a specified index position in this instance.



Attributes

Input

  • OriginalString - The original string in which the specified string would be inserted.

  • Position - The specified index position where the value would be inserted.

  • Value - The specified string to be inserted.

Common

  • ContinueOnError - The Boolean value to specify whether to continue executing the next activities even if there is an error thrown on this activity.

Misc

  • Result - The resulting string where the specified string has been attached to the original string.

  • DisplayName - Renames the activity.


Example

  1. Create a String variable and name it output.
  2. Add an Insert activity inside the initial Sequence.
  3. In the Insert Result field under Attributesadd  the output variable.
  4. In the Insert Original String field, write "RPA".
  5. In the Insert Value field, write " (Robotic Process Automation)". This would be the string added with the original string.
  6. In the Insert Position field, type 3. This would be the index position where the value would be inserted.
  7. Under the Insert activity, add a Write Line activity.
  8. In the Write Line Text field, add the output variable. 

    The use case should look as the following screenshot:



This should be the output in the Output panel: