我希望删除用于解析的规则中的最后一条语句。语句用@
字符封装,规则本身用模式标签封装。
我想要做的只是删除最后一条规则语句。
我目前实现这一目标的想法是这样的:
打开规则文件,将每一行作为一个元素保存到列表中。
选择包含正确规则 ID 的行,然后将规则模式另存为新字符串。
反转保存的规则模式。
删除最后一条规则语句。
重新反转规则模式。
添加尾随模式标记。
所以输入看起来像:
<pattern>@this is a statement@ @this is also a statement@</pattern>
输出将如下所示:
<pattern>@this is a statement@ </pattern>
我目前的尝试是这样的:
with open(rules) as f:
lines = f.readlines()
string = ""
for line in lines:
if ruleid in line:
position = lines.index(line)
string = lines[position + 2] # the rule pattern will be two lines down
# from where the rule-id is located, hence
# the position + 2
def reversed_string(a_string): #reverses the string
return a_string[::-1]
def remove_at(x): #removes everything until the @ character
return re.sub('^.*?@','',x)
print(reversed_string(remove_at(remove_at(reversed_string(string)))))
这将反转字符串,但不会删除最后一条规则语句,一旦它被反转。
仅运行该reversed_string()函数将成功反转字符串,但尝试通过该remove_at()函数运行相同的字符串将根本不起作用。
但是,如果您手动创建输入字符串(到相同的规则模式),并放弃打开和抓取规则模式,它将成功删除尾随的规则语句。
成功的代码如下所示:
string = '<pattern>@this is a statement@ @this is also a statement@</pattern>'
def reversed_string(a_string): #reverses the string
return a_string[::-1]
def remove_at(x): #removes everything until the @ character
return re.sub('^.*?@','',x)
print(reversed_string(remove_at(remove_at(reversed_string(string)))))
另外,删除完成后如何添加模式标签?
HUH函数
相关分类