substitute() Function

Substitutes a specific part of a string with another string.

Syntax

substitute ( text, find, replace_with )

text: (Text) The string to be modified.

find: (Text) The part of the string that will be replaced.

replace_with: (Text) The replacement substring.

Returns

Text

Examples

substitute("hello world","hello","my") returns my world

Open in Github Built: Thu, Feb 23, 2023 (02:59:22 PM)

On This Page

FEEDBACK