La interfaz de VDS Renaissance está disponible en varios idiomas. La documentación oficial se mantiene en inglés para garantizar una referencia única, coherente y siempre actualizada.

@STRREP

Windows Linux macOS

Syntax

@STRREP(<string>,<find_str>,<repl_str>{,EXACT}{,<ALL>})

Description

This function returns the result of replacing <find_str> with <repl_str> in <string>. If the optional argument ALL is specified, then all instances of <find_str> are replaced with <repl_str>. Otherwise just a single replacement is made.

Note that by default the comparison is not case sensitive. The optional argument EXACT may be used to specify a case-sensitive match

OK

Unchanged.

Example

%R = @strrep(The quick brown fox,brown,red)

See also