Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XML があり、複数行の文字列を検索して一致させたいと考えています。
</head> <head>
アイデアは、最終的に挿入することです
</head> </body> <body> <head>
これはviで実行できると思います。少し調べて「_s」を見つけましたが、複数の行では機能しないようです..これは私が試したものです:
/<\/head>\_s<head>
誰か助けてくれませんか?
提供したパターンは期待どおりに機能します。
<head> </head> <head> </head> <head> </head> :%s/<\/head>\_s<head>/<\/head>\r<body>\r<\/body>\r<head>/gc # remove c <head> </head> <body> </body> <head> </head> <body> </body> <head> </head>