diff options
author | Razvan Becheriu <razvan@isc.org> | 2023-09-21 15:45:32 +0200 |
---|---|---|
committer | Razvan Becheriu <razvan@isc.org> | 2023-09-22 15:29:59 +0200 |
commit | 9726fc3223290d4ea64bf7b6986149c726611e62 (patch) | |
tree | d9147521d8baf06bb3d14526f9b2b1c597c93460 /doc/sphinx/arm | |
parent | [#1520] add ChangeLog entry (diff) | |
download | kea-9726fc3223290d4ea64bf7b6986149c726611e62.tar.xz kea-9726fc3223290d4ea64bf7b6986149c726611e62.zip |
[#3048] added the lcase and ucase operators
Diffstat (limited to 'doc/sphinx/arm')
-rw-r--r-- | doc/sphinx/arm/classify.rst | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/sphinx/arm/classify.rst b/doc/sphinx/arm/classify.rst index 9ecf9a964e..0ee18dc4ed 100644 --- a/doc/sphinx/arm/classify.rst +++ b/doc/sphinx/arm/classify.rst @@ -521,7 +521,17 @@ Notes: +-----------------------+-------------------------+-----------------------+ | Hexstring | hexstring('foo', '-') | Converts the value to | | | | a hexadecimal string, | - | | | e.g. 0a:1b:2c:3e | + | | | e.g. 66-6F-6F | + +-----------------------+-------------------------+-----------------------+ + | Lcase | lcase('LoWeR') | Converts the value of | + | | | a string expression | + | | | to lower case e.g. | + | | | 'lower' | + +-----------------------+-------------------------+-----------------------+ + | Ucase | ucase('uPpEr') | Converts the value of | + | | | a string expression | + | | | to upper case e.g. | + | | | 'UPPER' | +-----------------------+-------------------------+-----------------------+ | Split | split('foo.bar', '.', 2)| Return the second | | | | field, splitting on | |