gpt4 book ai didi

regex - 使用sed替换字符之间的特定单词?

转载 作者:行者123 更新时间:2023-12-04 08:44:51 24 4
gpt4 key购买 nike

有谁知道如何替换()之间的特定单词.因此,例如,替换单词 andor在两组括号之间:

(grade='C' and grade='D' and grade='E') and (int_rate>=10 and int_rate<=20) and pub_rec>=0 and term=' 36 months'



这将是:

(grade='C' or grade='D' or grade='E') and (int_rate>=10 or int_rate<=20) and pub_rec>=0 and term=' 36 months'

最佳答案

非常愚蠢的方法:

$ sed 's/and/or/g' INPUT | sed 's/) or (/) and (/' | sed 's/\(.*\)or/\1and/'
(grade='C' or grade='D' or grade='E') and (int_rate>=10 or int_rate<=20) and pub_rec>=0
and term=' 36 months'

关于regex - 使用sed替换字符之间的特定单词?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16899550/

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