Hi
I would like to know how to apply toLower to a list of strings?
Thanks
Hi
I would like to know how to apply toLower to a list of strings?
Thanks
Hello @nawar_alwesh
WITH ["String1", "STRING2", "StrING3"] AS elements
RETURN [element IN elements | toLower(element)] AS elements
Regards,
Cobra
Hi Cobra
Thank you so much that worked perfectly