我敢肯定我们所有人都在 Facebook 状态(或其他地方)上看到了省略号,然后单击“显示更多”并且只有另外 2 个字符左右。我猜这是因为惰性编程,因为肯定有一个理想的方法。
我的将细长字符 [iIl1]
视为“半字符”,但这并不能解决省略号在几乎不隐藏任何字符时看起来很傻的问题。
有理想的方法吗?这是我的:
/**
* Return a string with a maximum length of <code>length</code> characters.
* If there are more than <code>length</code> characters, then string ends with an ellipsis ("...").
*
* @param text
* @param length
* @return
*/
public static String ellipsis(final String text, int length)
{
// The letters [iIl1] are slim enough to only count as half a character.
length += Math.ceil(text.replaceAll("[^iIl]", "").length() / 2.0d);
if (text.length() > length)
{
return text.substring(0, length - 3) + "...";
}
return text;
}
语言并不重要,但被标记为 Java,因为这是我最感兴趣的。
原文由 Amy B 发布,翻译遵循 CC BY-SA 4.0 许可协议
我喜欢让“瘦”字符算作半个字符的想法。简单且很好的近似。
然而,大多数省略的主要问题是(恕我直言) 他们在中间切掉了单词。这是一个考虑到单词边界的解决方案(但不深入研究像素数学和 Swing-API)。
该算法的测试如下所示: