在 Javascript 中修剪和创建文本省略号不是基于字符数而是基于换行符数
我想编写一个函数,它接受一些文本并根据它的换行符数量对其进行修剪,我希望它在遇到 6 个换行符后修剪并放置“...阅读更多”,有点像Facebook 如何处理评论和墙贴。
谢谢。
I want to program a function that takes in some text and makes a trim on it based on the number of line breaks it has, I want it to trim and place "... Read more" after it hits 6 line breaks, sorta like what Facebook does with comments and wall posts.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用全局正则表达式的lastIndex 属性。
You can use the lastIndex property of a global regular expression.
这可能会引起兴趣:http://blog.mattschwarz.me/post/2688505800 /介绍-clamp-js
This might be of interest : http://blog.mattschwarz.me/post/2688505800/introducing-clamp-js