mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
16 lines
392 B
Plaintext
16 lines
392 B
Plaintext
{
|
|
"name": "from_base64",
|
|
"groups": ["Conversions"],
|
|
"type": "function",
|
|
"description": "Decodes a string in the Base64 encoding into a binary value.",
|
|
"arguments": [{
|
|
"arg": "string",
|
|
"description": "the string to decode"
|
|
}],
|
|
"examples": [{
|
|
"expression": "from_base64('UUdJUw==')",
|
|
"returns": "'QGIS'"
|
|
}],
|
|
"tags": ["encoding", "base", "binary", "decodes"]
|
|
}
|