How do I Find the Size of a Column?¶
To get the size of a column, you can use strlen
to measure its length.
make_col questionLength:strlen(question)
sort desc(questionLength)
You may also want to cast as a string, or concatenate multiple columns before using strlen
.