VDS Renaissance 的界面提供多种语言。官方文档以英语维护,以确保提供统一、一致且始终最新的参考。
@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)