VDS Renaissance のインターフェースは複数の言語に対応しています。公式ドキュメントは、単一で一貫した常に最新のリファレンスを保証するため、英語で管理されています。
@STRREP
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)