将文本换行到80列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将文本换行到80列相关的知识,希望对你有一定的参考价值。

warning: snipplr tends to escape the quotes and slashes, causing this snippet to fail when pasted verbatim.
  1. def wrap_text(txt, col = 80):
  2. import re
  3. re.sub("/(.{1,#{col}})( +|$n?)|(.{1,#{col}})/", "13n", txt)
  4. # warning: snipplr tends to escape the quotes and slashes, causing this
  5. # snippet to fail when pasted in.
  6. return txt

以上是关于将文本换行到80列的主要内容,如果未能解决你的问题,请参考以下文章

在 RaphaelJS 中自动将文本换行到一个宽度?

Android:以编程方式添加 Textview 不将文本换行到下一行

当文本换行到两行时,块元素采用全宽

SwiftUI Text scaledToFit 和换行

是否有用于 80 列格式化文本输出的库/方法? [关闭]

React Native Flex-Wrap 不会将文本换行或挤压到屏幕的一侧