gpt4 book ai didi

regex - 如何使用正则表达式删除具有特定变量的特定行

转载 作者:行者123 更新时间:2023-12-04 23:30:16 25 4
gpt4 key购买 nike

    reportdoc.getAttributes().put(ATT_NAME, "report");
reportdoc.getAttributes().put(ATT_PIXEL_SIZE, "64");

clouddoc.getAttributes().put(ATT_NAME, "cloud");
clouddoc.getAttributes().put(ATT_PIXEL_SIZE, "128");

我想删除上述文件中包含 ATT_PIXEL_SIZE 出现的整行。我应该在 eclipse 中使用什么正则表达式来搜索和 remove线条。

最佳答案

对我来说这有效

^.*ATT_PIXEL_SIZE.*\r\n

并替换为空。但我不确定,可能是您需要另一个换行符,例如 \r\n .
$不会工作,因为这是一个零宽度断言,它只会在最后一个字符和行尾匹配,而不是行尾本身。

关于regex - 如何使用正则表达式删除具有特定变量的特定行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6120503/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com