apoc.text.urldecode
Function APOC Core
apoc.text.urldecode(text) - return the urldecoded text
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?