Bemærk
Adgang til denne side kræver godkendelse. Du kan prøve at logge på eller ændre mapper.
Adgang til denne side kræver godkendelse. Du kan prøve at ændre mapper.
Switch services using the Version drop-down list. Learn more about navigation.
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 |