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: Fri, Nov 04, 2022 (07:10:52 PM)

On This Page

FEEDBACK