Suppose I have a text file open in Vim:
Hello Tom. How's your mom?
HellO Sam. Pass me the Jam.
Hell0 Jim. Do you know Vim?
I can replace the three names with "friend" using the Visual block trick. But what if the three names were of different length?
Hello Kat. You're not fat...
HellO Mike. Where's Pike?
Hell0 James. Hunger games?
Is it possible to replace Cat, Mike and James with "friend"? How about if they were surrounded by the same characters, e.g. html tags?
Hello <Steph>. You seen Jeff?
HellO <Mat>. Here's your hat.
Hell0 <Jenny>. Got a penny?
And if those were doable/easy, is there a way to do it for a single paragraph out of similar paragraphs in a file? Thanks
This replaces the word before the first period on each line.
This replaces the word before the first pair
>.
on each line.Also:
This replaces the first occurrence of (either)
Steph
,Mat
, andJenny
on each line.Depending on what you mean by "paragraph", you can use
:global
. Or not. :)