Get your own free workspace
View
 

Replace

Page history last edited by Gamemaster 3 years, 6 months ago

 

Replace

Usage:

                Replace(String, From, To)

 

Description:

The Replace command returns the specified String, after replacing all instances of the From string contained in it, with the To string.

Example:

                Function Main()
                        Result = Replace("Hello", "e", "33")
                        Output(Actor(), Result) // Displays H33llo
                        Return()
                End Function

Comments (0)

You don't have permission to comment on this page.