Replace(), ReplaceAll()

NoteOnly available in the preprocessor!

Find and replace a String with another string.

Syntax

Example

result=Replace("Hello world! Good morning world!","world","earth") ;returns "Hello earth! Good morning world!"
result=ReplaceAll("Hello world! Good morning world!","world","earth") ;returns "Hello earth! Good morning earth!"