Skip to main content

PutStringAfter

Type

statement

Summary

Appends Source to Target.

Syntax

put <Source> after <Target>

Description

Use to insert a string without replacement. Can be used either with a chunk expression to insert at a specified location, or without to append to the target string.

Parameters

NameTypeDescription

Source

An expression which evaluates to a string.

Target

An expression which evaluates to a string container.

Examples

variable tVar as String
put "" into tVar
put "rent" after tVar -- tVar contains "rent"
put "placeme" after char 2 of tVar -- tVar contains "replacement"
Thank you for your feedback!

Was this page helpful?