Die Oberfläche von VDS Renaissance ist in mehreren Sprachen verfügbar. Die offizielle Dokumentation wird auf Englisch gepflegt, um eine einheitliche, konsistente und stets aktuelle Referenz zu gewährleisten.
@EQUAL
Syntax
@EQUAL(<string1>,<string2> , EXACT)
Description
This function compares two string values. If the values are both valid numbers then a numeric comparison is performed, otherwise a string comparison is performed based on ASCII character values. The value 1 (true) is returned if they are identical; otherwise the function returns null (false).
Unless the optional EXACT parameter is specified the string comparison is not case sensitive, so "Visual DialogScript" and "VISUAL Dialogscript" would be considered equal.
OK
Unchanged.
Example
IF @EQUAL(%F,WIN.INI)
WARN You must not delete this file!
END