Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In this article
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Concatenates between 2 and 64 arguments, using a specified delimiter as the first argument.
strcat_delim(
delimiter, argument1, argument2[ , argumentN])
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
delimiter | string |
✔️ | The string to be used as separator in the concatenation. |
argument1 ... argumentN | scalar | ✔️ | The expressions to concatenate. |
Note
If the arguments aren't of string type, they'll be forcibly converted to string.
The arguments concatenated to a single string with delimiter.
print st = strcat_delim('-', 1, '2', 'A', 1s)
Output
st |
---|
1-2-A-00:00:01 |