(Insert TipProposed template + minor manual clean)
Line 1:
Line 1:
−
Some times I want to replace something in a file, and see if my pattern did not match things I don't want to replace. The vim solution is to use 'c' flag for the substitute command, though sometimes I don't want to go through every substitution. Here is my simple solution, which prints every line which matches the pattern, then makes the substitution, and then prints it again, so you can compare if the changes are ok.
+
{{TipProposed
+
|id=0
+
|previous=0
+
|next=0
+
|created=October 21, 2012
+
|complexity=basic
+
|author=Marcin Szamotulski
+
|version=7.0
+
|subpage=/201210
+
|category1=
+
|category2=
+
}}
+
Sometimes I want to replace something in a file, and see if my pattern did not match things I don't want to replace. The Vim solution is to use 'c' flag for the substitute command, though sometimes I don't want to go through every substitution. Here is my simple solution, which prints every line which matches the pattern, then makes the substitution, and then prints it again, so you can compare if the changes are ok.
+
==Solution==
==Solution==
The solution is to use the global command:
The solution is to use the global command:
Line 5:
Line 5:
:g/PAT/#|s/PAT/REP/g|#
:g/PAT/#|s/PAT/REP/g|#
</pre>
</pre>
−
==Comments==
==Comments==
−
[[Replace]]
Latest revision as of 08:01, January 12, 2013
Recently created tip
We have not yet decided whether to keep this tip as its own page or merge it somewhere else. If you have a suggestion on the tip content, please edit this page or add your comments below (do not use the discussion page).
Please discuss whether to keep this as a new tip, or whether to merge it into an existing tip, on the new tips discussion page.
created October 21, 2012 · complexity basic · author Marcin Szamotulski · version 7.0
Sometimes I want to replace something in a file, and see if my pattern did not match things I don't want to replace. The Vim solution is to use 'c' flag for the substitute command, though sometimes I don't want to go through every substitution. Here is my simple solution, which prints every line which matches the pattern, then makes the substitution, and then prints it again, so you can compare if the changes are ok.