Compare
About the function
This function compares two strings. It returns 0 if they are identical, 1 otherwise. The function is case sensitive.
Syntax
- Compare(s,s)
Description
| # | Type | Description |
|---|---|---|
| 1 | s | String to be compared. |
| 2 | s | String to be compared. |
Example
@Compare('Bajaboo', 'bajaboo') returns 1
@Compare('Bajaboo', 'Bajaboo') returns 0