我想找到一种方法来获取标题,如果时间太短,就像这样:
'this is a title'
'this is a very long title that ...'
有没有办法在mako中打印字符串,如果大于一定数量的字符,会自动截断“...”?
感谢。
答案 0 :(得分: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
答案 1 :(得分:0)
webhelpers
与MAKO模板齐头并进。使用webhelpers.text.truncate
- http://sluggo.scrapping.cc/python/WebHelpers/modules/text.html#webhelpers.text.truncate