diff options
author | Marcin Godzina <mgodzina@isc.org> | 2022-08-04 09:25:54 +0200 |
---|---|---|
committer | Marcin Godzina <mgodzina@isc.org> | 2022-08-04 09:25:54 +0200 |
commit | 868990fb5727fea730a9588744b4e8d2c6798283 (patch) | |
tree | 05854a6f76e1cc47f4fd6af279b713bd1d289aef /doc/sphinx/arm/classify.rst | |
parent | [#2517] Updated unit tests (diff) | |
download | kea-868990fb5727fea730a9588744b4e8d2c6798283.tar.xz kea-868990fb5727fea730a9588744b4e8d2c6798283.zip |
Added note to split expression
Diffstat (limited to '')
-rw-r--r-- | doc/sphinx/arm/classify.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/sphinx/arm/classify.rst b/doc/sphinx/arm/classify.rst index 04cc95c611..b5337821cb 100644 --- a/doc/sphinx/arm/classify.rst +++ b/doc/sphinx/arm/classify.rst @@ -631,6 +631,12 @@ fields, the result will be an empty string. Some examples follow: split ('one.two..four', '.', 4) == 'four' split ('one.two..four', '.', 5) == '' +.. note:: + + To use hard to escape character as a delimiter, you can use its ASCI value. + For example you can split by ``single quote`` using ``0x27``: + ``split(option[39].text, 0x27, 1)`` + Ifelse ------ |