trim — strip leading and trailing whitespace
trim(s: string) -> string
The trim function converts stips all leading and trailing whitespace
from string argument s and returns the result.
echo '" = Zed = "' | zq -z 'yield trim(this)' -
=>
"= Zed ="