代码之家  ›  专栏  ›  技术社区  ›  CustardBun

将文件中的所有字符串替换为“SomeWord-######”和“SomeOtherWord ABC”

  •  1
  • CustardBun  · 技术社区  · 6 年前

    我必须替换数千次出现的包含“SomeWord-”的字符串,后跟四个数字(可以是任意四个数字)。

    例如,文件可能包含:

    blah:"someValue1",
    otherThing:"someOtherValue1",
    importantThing:"SomeWord-1232", 
    etc:".....",
    importantThing:"SomeWord-4567",
    otherThing:"SomeWord-8438"
    

    它需要变成另一根弦:

    blah:"someValue1",
    otherThing:"someOtherValue1",
    importantThing:"SomeOtherWord-ABC", 
    etc:".....",
    importantThing:"SomeOtherWord-ABC",
    otherThing:"SomeOtherWord-ABC"
    

    使用sed、grep、vim等最干净的方法是什么?

    1 回复  |  直到 6 年前
        1
  •  3
  •   Keith Nicholas    6 年前

    在Vim中你可以做到

    :%s/SomeWord-\d\+/SomeOtherWord-ABC/g    
    

    匹配一个或多个数字,如果你想要正好四个,那么你可以这样做

    :%s/SomeWord-\d\{4}/SomeOtherWord-ABC/g