Pyparsing:空格作为有效令牌

时间:2011-01-04 21:46:42

标签: python pyparsing

我正在使用pyparser来处理hex-to-text转换器的输出。它每行打印16个字符,用空格分隔。如果十六进制值是ASCII可打印字符,则打印该字符,否则转换器输出句点(。)

大多数输出​​看起来像这样:

. a . v a l i d . s t r i n g .
. a n o t h e r . s t r i n g .
. e t c . . . . . . . . . . . .

我描述这一行的pyparsing代码是:

dump_line = 16 * Word(printables, exact=1)

这很好用,直到十六进制文本转换器达到十六进制值0x20,这会导致它输出一个空格。

l i n e . w . a .   s p a c e .

在这种情况下,pyparsing忽略输出的空格并从下一行中取出字符以使“配额”为16个字符。

有人可以建议我如何告诉pyparsing期望16个字符,每个字符用空格分隔,其中空格也可以是有效字符吗?

提前致谢。 Ĵ

2 个答案:

答案 0 :(得分:6)

由于这具有重要的空白,因此您需要告诉您的角色表达式单独留下前导空格。请参阅下面的dumpchar定义:

hexdump = """\
. a . v a l i d . s t r i n g . 
. a n o t h e r . s t r i n g . 
. e t c . . . . . . . . . . . . 
l i n e . w . a .   s p a c e . 
. e t c . . . . . . . . . . . . 
"""

from pyparsing import oneOf, printables, delimitedList, White, LineEnd

# expression for a single char or space
dumpchar = oneOf(list(printables)+[' ']).leaveWhitespace()

# convert '.'s to something else, if you like; in this example, '_'
dumpchar.setParseAction(lambda t:'_' if t[0]=='.' else None)

# expression for a whole line of dump chars - intervening spaces will
# be discarded by delimitedList
dumpline = delimitedList(dumpchar, delim=White(' ',exact=1)) + LineEnd().suppress()

# if you want the intervening spaces, use this form instead
#dumpline = delimitedList(dumpchar, delim=White(' ',exact=1), combine=True) + LineEnd().suppress()

# read dumped lines from hexdump
for t in dumpline.searchString(hexdump):
    print ''.join(t)

打印:

_a_valid_string_
_another_string_
_etc____________
line_w_a_ space_
_etc____________

答案 1 :(得分:2)

考虑使用其他方法删除空格

>>> s=". a . v a l i d . s t r i n g ."
>>> s=s[::2]
>>> s
'.a.valid.string.'