非贪婪和固定数量的字符在VIM中搜索和替换

时间:2016-05-03 08:38:06

标签: regex vim sed

我有很多字符串,就像这样 -

icon=null restored=0 title=Adblock Browser itemType=0 container=-101

我想替换=之后的每个字符串,以便|分隔两个字段。

在上面的示例中,我希望将字符串替换为 -

icon=null |restored=0 |title=Adblock Browser |itemType=0 |container=-101

在VIM中,我尝试了以下search-and-replace表达式 -

:%s/=.\{-} \?.\{-} /\0|/gc

但是,问题在于,它与=Adblock Browser不匹配, 仅匹配 =Adblock部分。

关于我使用.\{-}的部分是因为有时字符串是这样的 -

icon=null profileId=0 screen=0 modified=1462258474716 iconPackage=null iconResource=null spanX=1 cellX=2 displayMode=null appWidgetProvider=null intent=#Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;launchFlags=0x10200000;component=com.google.android.play.games/com.google.android.gms.games.ui.destination.main.MainActivity;end restored=0 title=Play Games itemType=0 container=8 iconType=null isShortcut=null spanY=1 _id=14 cellY=1 uri=null appWidgetId=-1
icon=null profileId=0 screen=1 modified=0 iconPackage=null iconResource=null spanX=1 cellX=3 displayMode=null appWidgetProvider=null intent=#Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;launchFlags=0x10200000;component=com.android.vending/.AssetBrowserActivity;end restored=0 title=Play Store itemType=0 container=-100 iconType=null isShortcut=null spanY=1 _id=15 cellY=3 uri=null appWidgetId=-1
icon=null profileId=0 screen=4 modified=0 iconPackage=null iconResource=null spanX=1 cellX=4 displayMode=null appWidgetProvider=null intent=#Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;launchFlags=0x10200000;package=org.adblockplus.browser;component=org.adblockplus.browser/.App;end restored=0 title=Adblock Browser itemType=0 container=-101 iconType=null isShortcut=null spanY=1 _id=19 cellY=0 uri=null appWidgetId=-1

,输出应该是这样的 -

icon=null |profileId=0 |screen=0 |modified=1462258474716 |iconPackage=null |iconResource=null |spanX=1 |cellX=2 |displayMode=null |appWidgetProvider=null |intent=#Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;launchFlags=0x10200000;component=com.google.android.play.games/com.google.android.gms.games.ui.destination.main.MainActivity;end |restored=0 |title=Play Games |itemType=0 container=8 |iconType=null |isShortcut=null |spanY=1 |_id=14 |cellY=1 |uri=null |appWidgetId=-1

和其他字符串类似。

最小,可验证的例子

这是输入文件的内容 -

icon=null profileId=0 screen=4 modified=0 iconPackage=null iconResource=null spanX=1 cellX=4 displayMode=null appWidgetProvider=null intent=#Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;launchFlags=0x10200000;package=org.adblockplus.browser;component=org.adblockplus.browser/.App;end restored=0 title=Adblock Browser itemType=0 container=-101 iconType=null isShortcut=null spanY=1 _id=19 cellY=0 uri=null appWidgetId=-1

VIM中的搜索和替换表达式 -

:%s/=.\{-} \?.\{-} /\0|/gc

输出:

icon=null |profileId=0 |screen=4 |modified=0 |iconPackage=null |iconResource=null |spanX=1 |cellX=4 |displayMode=null |appWidgetProvider=null |intent=#Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;launchFlags=0x10200000;package=org.adblockplus.browser;component=org.adblockplus.browser/.App;end |restored=0 |title=Adblock |Browser itemType=0 |container=-101 |iconType=null |isShortcut=null |spanY=1 |_id=19 |cellY=0 |uri=null |appWidgetId=-1

错误的部分 -

restored=0 |title=Adblock |Browser itemType=0 |container=-101 |

应该是 -

restored=0 |title=Adblock Browser |itemType=0 |container=-101 |

2 个答案:

答案 0 :(得分:3)

sed -r 's/ ([^= ]*=)/ |\1/g' file

这将匹配空格,后跟0或更多字符(空格除外)或=后跟=。 ()括号内的字符串捕获将位于\1,即第一个capturing group\0将在组内捕获所有字符串 然后按| \1

替换匹配项

答案 1 :(得分:1)

我有一些坏消息:在sed中,量子是贪婪的。你也没有环顾四周,所以你不能在sed中做到这一点。

好消息:perl可以帮助你解决这个问题。这是一个用perl实现几乎所有内容的脚本:

echo "icon=null restored=0 title=Adblock Browser itemType=0 container=-101" |
perl -p -e 's/([^ =]*=)/|\1/g'

不幸的是它会有一个领先的管道。但这很容易解决 - 但有点脏,我知道:

echo "icon=null restored=0 title=Adblock Browser itemType=0 container=-101" |
perl -p -e 's/([^ =]*=)/|\1/g' | 
sed 's/^|//g'