这里完全是初学者编码器,首先在这个好地方发帖。使用 Python 3.2.3。
简要说明
我想对字符串进行自动换行和字符填充,但应该忽略字符串的某些部分。
背景
我正在使用一个从 .txt 文件输出文本但没有自动换行或换行符的程序。由于我至少目前无法编辑程序的功能,所以我唯一的选择是编辑文本文件。
该程序使用固定大小的等宽字体,所以我知道每个文件和行的特定字符数。我使用程序的硬空间命令 \_ 作为每个包装行的填充字符(最后一行除外)。hard-space 命令暂时转换为#以在我的脚本中保持正确的字符数。
这是我的文本编辑脚本的一个相当改变和简化的版本:
from textwrap import TextWrapper
linelist = ['"I thought that...\p glob was a weird\_name for a module."',
"Nobody can tell a secret from the \p\shake{1}sky unless they borrow wings \
from their neighbors. It's a pity, really. Life on the ground can be a bore.",
'\shake{6} The ground was trembling. What\wait{150} \pcould\wait{1300} the \
townfolk do? Even the pizzeria was closed.']
ww = TextWrapper(break_on_hyphens="False", width=30)
def space_wordwrap(wwl):
out = []
for ln in ww.wrap(wwl):
out.append("{0:#<{1:d}}".format(ln, ww.width))
#just a quick workaround for simpler print output for SO question
if not ln in ww.wrap(wwl)[-1]:
out[-1] += "\n"
return ''.join(out).rstrip('#')
for line in linelist:
#line = line.replace('\\_', '#')
if len(line) > ww.width:
line = space_wordwrap(line)
#line = line.replace('#', '\\_')
print(line + "\n")
问题
文本文件中的许多行都包含程序的命令。这些命令不会被程序显示为文本,但它们的位置很重要......并且它们被放置在可显示文本周围的任何位置。这会抛出自动换行的字符数。
有 4 个命令:\p \wait{100} \stop{200} \shake{1}
. 请参阅linelist
示例。
脚本的输出是这样的:
"I thought that...\p glob was#
a weird\_name for a module."
Nobody can tell a secret from#
the \p\shake{1}sky unless they
borrow wings from their#######
neighbors. It's a pity,#######
really. Life on the ground can
be a bore.
\shake{6} The ground was######
trembling. What\wait{150}#####
\pcould\wait{1300} the########
townfolk do? Even the pizzeria
was closed.
我想我必须从行中删除程序命令,然后在自动换行后将它们插入各自的位置,但我不确定最干净的方法是什么。
我最初的想法是找到前一个单词(如果有的话)并将其用作参考。我会检查是否使用了 \,在它之前找到一个没有后跟 \ 的空格,将前一个单词存储在一个列表中,然后在单词上插入一个订单号,以防万一线。
哇!结果证明这是一个相当冗长的描述。关于应该如何做的任何建议?另外,如果我的任何编码实践看起来很愚蠢,我很高兴知道。毕竟,这才刚刚开始。:-]
提前致谢!