apoc.text.urldecode
Function
apoc.text.urldecode(text String)
- decodes the given URL encoded string.
Usage Examples
RETURN apoc.text.urldecode("Neo4j+Aura") AS output;
output |
---|
"Neo4j Aura" |
RETURN apoc.text.urldecode("Neo4j%3C3GRANDstack") AS output;
output |
---|
"Neo4j<3GRANDstack" |
Was this page helpful?