Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Concatenates between 2 and 64 arguments, using a specified delimiter as the first argument.
Syntax
strcat_delim(delimiter, argument1, argument2[ , argumentN])
Learn more about syntax conventions.
Parameters
| 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.
Returns
The arguments concatenated to a single string with delimiter.
Example
print st = strcat_delim('-', 1, '2', 'A', 1s)
Output
| st |
|---|
| 1-2-A-00:00:01 |