1

如果太长,我想找到一种方法来截断标题,如下所示:

'this is a title'
'this is a very long title that ...'

有没有办法在 mako 中打印一个字符串,如果超过一定数量的字符,会自动用“...”截断?

谢谢。

4

2 回答 2

2

基本的python解决方案:

MAXLEN = 15
def title_limit(title, limit):
    if len(title) > limit:
        title = title[:limit-3] + "..."
    return title

blah = "blah blah blah blah blah"
title_limit(blah) # returns 'blah blah bla...'

这只会减少空格(如果可能的话)

def find_rev(str,target,start):
    str = str[::-1]
    index = str.find(target,len(str) - start)
    if index != -1:
        index = len(str) - index
    return index

def title_limit(title, limit):
    if len(title) <= limit: return title
    cut = find_rev(title, ' ', limit - 3 + 1)
    if cut != -1:
        title = title[:cut-1] + "..."
    else:
        title = title[:limit-3] + "..."
    return title

print title_limit('The many Adventures of Bob', 10) # The...
print title_limit('The many Adventures of Bob', 20) # The many...
print title_limit('The many Adventures of Bob', 30) # The many Adventures of Bob
于 2010-10-12T19:17:42.817 回答
0

webhelpers与 MAKO 模板齐头并进。使用webhelpers.text.truncate- http://sluggo.scrapping.cc/python/WebHelpers/modules/text.html#webhelpers.text.truncate

于 2013-03-01T10:22:12.300 回答