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