I'm trying to manipulate the contents of fields returned from application Insights logging and was wondering if there are KQL equivalents for the Oracle substr
and instr
functions?
Asked
Active
Viewed 135 times
0

atamata
- 997
- 3
- 14
- 32
-
1Plenty of [docs](https://learn.microsoft.com/en-us/azure/data-explorer/kusto/query/substringfunction) available regarding the available functions. – Peter Bons Mar 12 '21 at 12:02
-
Better describe a clear scenario and ask for a solution without trying to dictate it – David דודו Markovitz Jan 23 '22 at 12:37
1 Answers
1
The equivalent of Oracle substr function in KQL is substring().
The equivalent of Oracle instr function in KQL is indexof().

Slavik N
- 4,705
- 17
- 23