apoc.text.urldecode

Details

Syntax

apoc.text.urldecode(text)

Description

Decodes the given URL encoded STRING.

Arguments

Name

Type

Description

text

STRING

The string to url decode.

Returns

STRING

Usage Examples

RETURN apoc.text.urldecode("Neo4j+Aura") AS output;
Results
output

"Neo4j Aura"

RETURN apoc.text.urldecode("Neo4j%3C3GRANDstack") AS output;
Results
output

"Neo4j<3GRANDstack"