Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
05-14-2021 02:22 PM
I don't see it in string functions, not in APOC either.
Please confirm it and I will have to do it outside of neo4j. Those functions are very helpful though.
Solved! Go to Solution.
05-15-2021 03:53 AM
Have you considered
apoc.text.clean(text)
strip the given string of everything except alpha numeric characters and convert it to lower case.
and thus something similar to
match (n:Movie) where apoc.text.clean(n.title)=n.title return n;
or is this giving you issues as well
05-15-2021 03:53 AM
Have you considered
apoc.text.clean(text)
strip the given string of everything except alpha numeric characters and convert it to lower case.
and thus something similar to
match (n:Movie) where apoc.text.clean(n.title)=n.title return n;
or is this giving you issues as well
All the sessions of the conference are now available online