From 3c66fb0b54207ac28662d397343b69cadd6af2ae Mon Sep 17 00:00:00 2001 From: "Zsolt Gyulai (zgyulai)" Date: Fri, 26 Jan 2024 13:46:23 +0100 Subject: [PATCH] Uppercase and lowercase options included for rekey() Signed-off-by: Zsolt Gyulai (zgyulai) --- Content/Guides/shared/chunk/option-value-pairs.htm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Content/Guides/shared/chunk/option-value-pairs.htm b/Content/Guides/shared/chunk/option-value-pairs.htm index e71303037..ec914e9d3 100644 --- a/Content/Guides/shared/chunk/option-value-pairs.htm +++ b/Content/Guides/shared/chunk/option-value-pairs.htm @@ -226,6 +226,11 @@
Example: Using the value-pairs() option

Replaces a substring at the beginning of the key with another string. Only prefixes can be replaced. For example, replace-prefix(".class", ".patterndb") changes the beginning tag .class to .patterndb

This option was called replace() in version 3.4.

+
  • lower + + +

    Converts all keys to lowercase. Only characters included in the US ASCII are supported.

    +
  • shift("<number>") @@ -236,6 +241,11 @@
    Example: Using the value-pairs() option

    Similar to --shift, but instead of cutting characters, it cuts dot-delimited "levels" in the name (including the initial dot). For example, --shift-levels 2 deletes the prefix up to the second dot in the name of the key: .iptables.SRC becomes SRC

  • +
  • upper + + +

    Converts all keys to uppercase. Only characters included in the US ASCII are supported.

    +
  • Example: Using the rekey() option