Url decode(URL 解码)¶
Supported in: Batch, Faster, Streaming
Decodes a percent-encoded string to plain text.
Expression categories: Cast, String
Declared arguments¶
- Expression: The expression to url decode.
Expression\
Output type: String
Examples¶
Example 1: Base case¶
Argument values:
- Expression:
string
| string | Output |
|---|---|
| raw_string_with_no_special_characters | raw_string_with_no_special_characters |
| test%2Fapi%3Fstring%3D3 | test/api?string=3 |
Example 2: Null case¶
Argument values:
- Expression: null
Output: null
中文翻译¶
URL 解码¶
支持:批处理(Batch)、快速处理(Faster)、流处理(Streaming)
将百分比编码的字符串解码为纯文本。
表达式类别: 类型转换(Cast)、字符串(String)
声明的参数¶
- 表达式(Expression): 需要进行URL解码的表达式。
表达式\
输出类型: String
示例¶
示例1:基础案例¶
参数值:
- 表达式(Expression):
string
| string | 输出(Output) |
|---|---|
| raw_string_with_no_special_characters | raw_string_with_no_special_characters |
| test%2Fapi%3Fstring%3D3 | test/api?string=3 |
示例2:空值案例¶
参数值:
- 表达式(Expression): null
输出: null