Robot Framework Integrated Development Environment (RIDE)
robotide.lib.robot.utils.normalizing Namespace Reference

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...
 

Function Documentation

◆ lower()

def robotide.lib.robot.utils.normalizing.lower (   string)

Definition at line 50 of file normalizing.py.

◆ normalize()

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.