Home › Forums › KX Academy › Infix Notation question › Reply To: Infix Notation question
-
Hi @Jonathan
Thank you for sending the example!
Reply from @rocuinneagain
Sample data:
q)list:("wKDe arB33e on";"I a quSesGREATt!")
q)list
"wKDe arB33e on"
"I a quSesGREATt!"
except cannot operate on lists of lists
q)list except .Q.A
'type
[0] list except .Q.A
You can project and use each
q)except[;.Q.A] each list
"we ar33e on"
" a quest!"
Or to use infix notation use each left \:
q)list except\: .Q.A
"we ar33e on"
" a quest!"