EnglishРусский  
The project is closed! You can look at a new scripting language. It is available on GitHub.
Also, try our open source cross-platform automation software.

Ads

Installer and installation software
Commercial and Freeware installers.

str == str

Comparison operation.

operator uint == (
   str left,
   str right
)

Return value

Returns 1 if the strings are equal. Otherwise, it returns 0.


str != str

Comparison operation.

operator uint != (
   str left,
   str right
)

Return value

Returns 0 if the strings are equal. Otherwise, it returns 1.


str %== str

Comparison operation with ignore case.

operator uint %== (
   str left,
   str right
)

Return value

Returns 1 if the strings are equal with ignore case. Otherwise, it returns 0.


str %!= str

Comparison operation with ignore case.

operator uint %!= (
   str left,
   str right
)

Return value

Returns 0 if the strings are equal with ignore case. Otherwise, it returns 1.

Related links

Source