|| apoc.text.urldecode - APOC 核心文档 - Neo4j 文档

apoc.text.urldecode

详情

语法

apoc.text.urldecode(text)

描述

解码给定的 URL 编码 STRING

参数

名称

类型

描述

text

STRING

要进行 URL 解码的字符串。

返回

STRING

使用示例

RETURN apoc.text.urldecode("Neo4j+Aura") AS output;
结果
输出

"Neo4j Aura"

RETURN apoc.text.urldecode("Neo4j%3C3GRANDstack") AS output;
结果
输出

"Neo4j<3GRANDstack"

© . This site is unofficial and not affiliated with Neo4j, Inc.