Exemplo n.º 1
0
def getlast(text, delim=' '):
    """
    get last word from string with delimiter ' '
    usage: {{ string|getlast }}
    """
    return get_last_part(text, delim)
Exemplo n.º 2
0
def getlast(text, delim=' '):
  return get_last_part(text, delim)