url-decode.asciidoc 899 B

12345678910111213141516171819202122232425262728
  1. [[urldecode-processor]]
  2. === URL decode processor
  3. ++++
  4. <titleabbrev>URL decode</titleabbrev>
  5. ++++
  6. URL-decodes a string. If the field is an array of strings, all members of the array will be decoded.
  7. [[urldecode-options]]
  8. .URL Decode Options
  9. [options="header"]
  10. |======
  11. | Name | Required | Default | Description
  12. | `field` | yes | - | The field to decode
  13. | `target_field` | no | `field` | The field to assign the converted value to, by default `field` is updated in-place
  14. | `ignore_missing` | no | `false` | If `true` and `field` does not exist or is `null`, the processor quietly exits without modifying the document
  15. include::common-options.asciidoc[]
  16. |======
  17. [source,js]
  18. --------------------------------------------------
  19. {
  20. "urldecode": {
  21. "field": "my_url_to_decode"
  22. }
  23. }
  24. --------------------------------------------------
  25. // NOTCONSOLE