Classes | |
| class | NormalizedDict |
| Custom dictionary implementation automatically normalizing keys. More... | |
Functions | |
| def | lower (string) |
| def | normalize (string, ignore=(), caseless=True, spaceless=True) |
| Normalizes given string according to given spec. More... | |
| def robotide.lib.robot.utils.normalizing.lower | ( | string | ) |
Definition at line 50 of file normalizing.py.
| def robotide.lib.robot.utils.normalizing.normalize | ( | string, | |
ignore = (), |
|||
caseless = True, |
|||
spaceless = True |
|||
| ) |
Normalizes given string according to given spec.
By default string is turned to lower case and all whitespace is removed. Additional characters can be removed by giving them in ``ignore`` list.
Definition at line 30 of file normalizing.py.