我找不到合适的转义字符序列的好例子来替换此字符串的vi中的所有出现:"] ["用"," (没有引号)。
我更喜欢通过python或shell脚本来做,但只要我可以手动进行全局替换,vi也可以。
答案 0 :(得分:0)
这应该适用于vi:
:%s/\]\[/,/g
^ ^ ^ ^
| | | |___replace all ocurrences
| | |
| | |_____replace with ,
| |
| |__________replace escaped \]\[
|
|_____________replace in whole file