【发布时间】:2009-08-18 12:41:40
【问题描述】:
我想知道是否有一个插件可以启用某种智能截断。我需要以一个单词或一个句子的精度截断我的文本。
例如:
Post.my_message.smart_truncate(
"Once upon a time in a world far far away. And they found that many people
were sleeping better.", :sentences => 1)
# => Once upon a time in a world far far away.
或
Post.my_message.smart_truncate(
"Once upon a time in a world far far away. And they found that many people
were sleeping better.", :words => 12)
# => Once upon a time in a world far far away. And they ...
【问题讨论】:
标签: ruby-on-rails ruby text truncate