cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

toLower on a list of strings

Hi

 

I would like to know how to apply toLower to a list of strings?

Thanks

1 ACCEPTED SOLUTION

Hello @nawar_alwesh 🙂

WITH ["String1", "STRING2", "StrING3"] AS elements 
RETURN [element IN elements | toLower(element)] AS elements

Regards,
Cobra

View solution in original post

2 REPLIES 2

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  😊 👍