This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
worblehat-old/python/util.py
oysteini fddcfcbebe Kommandolinjetolking.
Laget kommandolinjetolker, og definert noen kommandoer (de fleste uten
implementasjon).  Knyttet boksøkefunksjonen inn i denne galskapen.
Oppdaterte arguments.txt litt.
2010-09-27 17:32:24 +00:00

5 lines
147 B
Python

def cut_str(string, length, ellipsis='...'):
if len(string) < length:
return string
return string[0:length-len(ellipsis)]+ellipsis