Head's Up! Site migration is underway. Phase 2: migrate recent content
β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