replace function

Syntax

  • string replace(inputString, oldString, newString)

Parameters

  1. inputStringstring
  2. oldStringstring
  3. newStringstring

Returns

Copy of inputString with oldString replaced by newString.

Description

The replace function replaces all occurrences of the oldString inside the inputString with the newString.

Related

Examples

example.1
	replace("rule your city with cityengine","your city","designs")
	# result = "rule designs with cityengine"
example.2
	replace("myTexture.#.jpg","#","1")
	# result = "myTexture.1.jpg"
	# this example is e.g. useful for index-based texturing

In this topic