]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
Added note to split expression
authorMarcin Godzina <mgodzina@isc.org>
Thu, 4 Aug 2022 07:25:54 +0000 (07:25 +0000)
committerMarcin Godzina <mgodzina@isc.org>
Thu, 4 Aug 2022 07:25:54 +0000 (07:25 +0000)
doc/sphinx/arm/classify.rst

index 04cc95c611ec686b7c6522b6849539a4ed42787f..b5337821cbc9f0c8df20a16bc3b49017962abe5f 100644 (file)
@@ -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
 ------