func X3.EN_TEXT_REPLACE(Clbfile TEXT_TO_MODIFY_IN, Char OLD_VALUE_IN, Char NEW_VALUE_IN, Tinyint CASE_SENSITIVE_IN) : Char

Allows you to replace one piece of string with another in a string.

  • TEXT_TO_MODIFY_IN Clbfile Complete string in which to make replacements
  • OLD_VALUE_IN Char Piece of string to find and replace
  • NEW_VALUE_IN Char Piece of replacement string
  • CASE_SENSITIVE_IN Tinyint Whether or not case is taken into account (0=No, 1=Yes)
Return Char New modified string
Example

func X3.EN_TEXT_REPLACE("My test string for strings", "string", "char", 1)
Returns "My test char for chars"