apoc.text.clean
Function
apoc.text.clean(text String)
- strips the given string of everything except alpha numeric characters and converts it to lower case.
Usage Examples
RETURN apoc.text.clean('Hello World!') AS output;
output |
---|
"helloworld" |
RETURN apoc.text.clean('Hello___World!') AS output;
output |
---|
"helloworld" |
RETURN apoc.text.clean('$-Hello___World!$') AS output;
output |
---|
"helloworld" |
Was this page helpful?