如何用脚本进行多行搜索和替换?
我正在尝试替换 Python 源文件中的每个多行导入。所以,源代码是这样的
from XXX import (
AAA,
BBB,
)
from YYY import (
CCC,
DDD,
EEE,
...
)
...other instructions...
,我想得到类似
from XXX import AAA, BBB
from YYY import CCC, DDD, EEE, ...
...other instructions...
我尝试使用 sed 的东西,但它看起来不支持非贪婪匹配右括号,所以它“吃掉”第二个导入.. :(
有什么提示吗? 这对于 sed 来说是不可能的吗? 我应该尝试使用其他工具吗?
I'm trying to replace every multiline import inside a Python source file.. So, the source goes like
from XXX import (
AAA,
BBB,
)
from YYY import (
CCC,
DDD,
EEE,
...
)
...other instructions...
and I'd like to get something like
from XXX import AAA, BBB
from YYY import CCC, DDD, EEE, ...
...other instructions...
I tried to use sed but it looks like it doesn't support non-greedy matching of the closing parenthesis, so it "eats" the second import.. :(
Any hint? Is this impossible with sed? Should I try with another tool?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可能对你有用:
This might work for you:
嗯……Python 有什么问题吗?
Ummm... what's wrong with Python?
对于后代,这里是 S.Lott 脚本的一个稍微完善的版本(我将其作为评论发布,但它太长 ^^; )..这个版本保留了缩进并产生了更接近我的示例的结果。
For posterity, here is a somewhat polished version of S.Lott's script (I'd have posted it as a comment, but it's too long ^^; ).. This version preserves indentation and produces a result closer to my example.