url-decode.asciidoc 770 B

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