strcmp()

Learn how to use the strcmp() function to compare two strings.

Compares two strings.

The function starts comparing the first character of each string. If they’re equal to each other, it continues with the following pairs until the characters differ or until the end of shorter string is reached.

Syntax

strcmp(string1, string2)

Parameters

NameTypeRequiredDescription
string1string✔️The first input string for comparison.
string2string✔️The second input string for comparison.

Returns

Returns an integer value indicating the relationship between the strings:

  • <0 - the first character that doesn’t match has a lower value in string1 than in string2
  • 0 - the contents of both strings are equal
  • >0 - the first character that doesn’t match has a greater value in string1 than in string2

Example

datatable(string1:string, string2:string) [
    "ABC","ABC",
    "abc","ABC",
    "ABC","abc",
    "abcde","abc"
]
| extend result = strcmp(string1,string2)

Output

string1string2result
ABCABC0
abcABC1
ABCabc-1
abcdeabc1