is it possible extract unique word from column with Kusto?
Example text: an example text, an orange, text bold Get only words: an, example, text, orange, bold
I'm trying with this regex:
mytable | extend ff = extract_all(@'(\w+\b)(?!.*\1\b)', info));