Robert Cain continues a series on KQL:
Almost all languages have the ability to extract part of a string. In C#, this is the
Substring
method of a string. With SQL, it is theSUBSTRING
command.Kusto has an operator that will perform this same task, it is called
extract
. In this post we’ll see some examples of using it.
Click through to see how extract
works.