I am struggling to find that in the list of scalar functions. Is there something more convenient that strcat()
for string formatting in Kusto?
Is there string formatting function in Kusto?
Asked Answered
As the comments say, there is no such function today. Please do consider voting for one on https://aka.ms/adx.ideas.
Other thoughts:
- User the format_* functions for specific formatting like printing bytes, datetime etc.
- Use a python function to run the formatting
© 2022 - 2024 — McMap. All rights reserved.
format_string
(spark.apache.org/docs/latest/api/sql/index.html#format_string) orprintf
(spark.apache.org/docs/latest/api/sql/index.html#printf) – Xylotomous