|
|||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||
Contents
|
|||||||||||||||||||||||||||||||||||||||||||||||||
|
I started this tutorial for one simple reason - I like regular expressions. Nothing compares to the satisfaction from a well-crafted regexp which does exactly what you wanted it to do :-). And yes, I have a life too. I hope it's passable as a foreword. Feel free to send me your comments, corrections and suggestions concerning this tutorial. Speaking more seriously, regular expressions (or regexps for short) are tools used to manipulate text and data. They don't exist as a standalone product but usually are a part of some program/utility. The most well known example is UNIX grep, a program to search files for lines that match certain pattern. The search pattern is described in terms of regular expressions. You can think of regexps as a specialized pattern language. Regexps are quite useful and can greatly reduce amount of time required to do some tedious text editing. Note: Regexp terminology is largely borrowed from Jeffrey Friedl "Mastering Regular Expressions". CreditsMany thanks to everybody (especially Benji Fisher & Zdenek Sekera) who sent their corrections and suggestions. |
|||||||||||||||||||||||||||||||||||||||||||||||||
2.1 Search & ReplaceSo, what can you do with regular expressions? The most common task is to
make replacements in a text according to certain rules. For this tutorial
you need to know VIM search and replace command (S&R)
Part of the command word enclosed in the "[" & "]" can be omitted. 2.2 Range of Operation, Line Addressing and MarksBefore I begin with a pattern description let's talk about line addresses
in Vim. Some Vim commands can accept a line range in front of them. By specifying
the line range you restrict the command execution to this particular part
of text only. Line range consists of one or more line specifiers, separated
with a comma or semicolon. You can also mark your current position in the
text typing
If no line range is specified the command will operate on the current line only. Here are a few examples:
- from 10 to 20 line. Each may be followed (several times) by "+" or "-" and an optional number. This number is added or subtracted from the preceding line number. If the number is omitted, 1 is used.
- all lines between Section 1 and Section 2, non-inclusively, i.e. the lines containing Section 1 and Section 2 will not be affected. The
- first find Section 1, then the first line with Subsection, step one line down (beginning of the range) and find the next line with Subsection, step one line up (end of the range). The next example shows how you can reuse you search pattern:
- this will search for the Section line and yank (copy) one line after into the memory.
- and that will search for the next Section line and put (paste) the saved text on the next line. |
|||||||||||||||||||||||||||||||||||||||||||||||||
|
Tip 1: frequently you need to do S&R in a text which contains UNIX file paths - text strings with slashes ("/") inside. Because S&R command uses slashes for pattern/replacement separation you have to escape every slash in your pattern, i.e. use "\/" for every "/" in your pattern:
To avoid this so-called "backslashitis" you can use different separators in S&R (I prefer ":")
Tip 2: You may find these mappings useful (put them in your .vimrc file)
These mappings save you some keystrokes and put you where you start typing your search pattern. After typing it you move to the replacement part , type it and hit return. The second version adds confirmation flag. |
|||||||||||||||||||||||||||||||||||||||||||||||||
3.1 AnchorsSuppose you want to replace all occurrences of vi with VIM. This can be easily done with
If you've tried this example then you, no doubt, noticed that VIM replaced all occurrences of vi even if it's a part of the word (e.g. navigator). If we want to be more specific and replace only whole words vi then we need to correct our pattern. We may rewrite it by putting spaces around vi:
But it will still miss vi followed by the punctuation
or at the end of the line/file. The right way is to put special word boundary
symbols "
The beginning and the end of the line have their own special anchors - "
To match the lines where vi is the only word:
Now suppose you want to replace not only all vi but also Vi and VI. There are several ways to do this:
|
|||||||||||||||||||||||||||||||||||||||||||||||||
3.2 "Escaped" characters or metacharactersSo far our pattern strings were constructed from normal or literal text characters. The power of regexps is in the use of metacharacters. These are types of characters which have special meaning inside the search pattern. With a few exceptions these metacharacters are distinguished by a "magic" backslash in front of them. The table below lists some common VIM metacharacters.
So, to match a date like 09/01/2000 you can use
To match 6 letter word starting with a capital letter
Obviously, it is not very convenient to write |
|||||||||||||||||||||||||||||||||||||||||||||||||
3.3 Quantifiers, Greedy and Non-GreedyUsing quantifiers you can set how many times certain part of you pattern should repeat by putting the following after your pattern:
Now it's much easier to define a pattern that matches a word of any
length These quantifiers are greedy - that is your pattern will try to match as much text as possible. Sometimes it presents a problem. Let's consider a typical example - define a pattern to match delimited text, i.e. text enclosed in quotes, brackets, etc. Since we don't know what kind of text is inside the quotes we'll use
But this pattern will match everything between the first " and the last " in the following line: This problem can be resolved by using non-greedy quantifiers:
Let's use
Before:
After: "As few as possible" applied here means zero character replacements. However match does occur between characters! To explain this behavior I quote Bram himself: Matching zero characters is still a match. Thus it will replace zero characters with a "_". And then go on to the next position, where it will match again. It's true that using "\{-}" is mostly useless. It works this way to be consistent with "*", which also matches zero characters. There are more useless ones: "x\{-1,}" always matches one x. You could just use "x". More useful is something like "x\{70}". The others are just consistent behavior: ..., "x\{-3,}", "x\{-2,}", "x\{-1,}. - Bram But what if we want to match only the second occurrence of quoted text? Or we want to replace only a part of the quoted text keeping the rest untouched? We will need grouping and backreferences. But before let's talk more about character ranges. |
|||||||||||||||||||||||||||||||||||||||||||||||||
3.4 Character rangesTypical character ranges:
Note that the range represents just one character in the search pattern,
that is
to the following text: Before:
After:
and now:
Before:
After:
Sometimes it's easier to define the characters you don't want to match. This
is done by putting a negation sign / - will match any character except capital letters. We can now rewrite our pattern for quoted text using
Note: inside the [ ] all metacharacters behave like ordinary characters. If you want to include "-" (dash) in your range put it first
- will match all digits and -. "^" will lose its special meaning if it's not the first character in the range. Now, let's have some real life example. Suppose you want to run a grammar check on your file and find all places where new sentence does not start with a capital letter. The pattern that will catch this:
- a period followed by one or more blanks and a lowercase word. We know how to find an error, now let's see how we can correct it. To do this we need some ways to remember our matched pattern and recall it later. That is exactly what backreferences are for. |
|||||||||||||||||||||||||||||||||||||||||||||||||
3.5 Grouping and BackreferencesYou can group parts of the pattern expression enclosing them with " s:\(\w\+\)\(\s\+\)\(\w\+\):\3\2\1:
where Replacement Part of :substituteReplacement part of the S&R has its own special characters which we are going to use to fix grammar:
Now the full S&R to correct non-capital words at the beginning of the sentences looks like
We have corrected our grammar and as an extra job we replaced variable number of spaces between punctuation and the first letter of the next sentence with exactly two spaces. |
|||||||||||||||||||||||||||||||||||||||||||||||||
3.6 AlternationsUsing " |
|||||||||||||||||||||||||||||||||||||||||||||||||
|
Tip 3: Quick mapping to put \(\) in your pattern string |
|||||||||||||||||||||||||||||||||||||||||||||||||
3.7 Regexp Operator PrecedenceAs in arithmetic expressions, regular expressions are executed in a certain order of precedence. Here the table of precedence, from highest to lowest:
|
|||||||||||||||||||||||||||||||||||||||||||||||||
4.1 Global search and executionI want to introduce another quite useful and powerful Vim command which we're going to use later
The global commands work by first scanning through the [range] of of the lines and marking each line where a match occurs. In a second scan the [cmd] is executed for each marked line with its line number prepended. If a line is changed or deleted its mark disappears. The default for the [range] is the whole file. Note: Ex commands are all commands you are entering on the Vim command line
like
mechanism. 4.2 ExamplesSome examples of
- delete all empty lines in a file
- reverse the order of the lines starting from the line 10 up to the line 20. Here is a modified example from Walter Zintz vi tutorial:
- in the text block marked by You can give multiple commands after
- will copy all Error line to the end of the
file and then make a substitution in the copied line. Without giving the line
address
- here the order is reversed: first modify the string then copy to the end. |
|||||||||||||||||||||||||||||||||||||||||||||||||
5.1 Tips and TechniquesA collection of some useful S&R tips: (1) sent by Antonio Colombo: "a simple regexp I use quite often to clean up a text: it drops the blanks at the end of the line:"
or (to avoid acting on all lines):
|
|||||||||||||||||||||||||||||||||||||||||||||||||
5.2 Creating outlineFor this example you need to know a bit of HTML. We want to make a table
of contents out of (1) First let's make named anchors in all headings, i.e. put
Explanation: the first pair of (2) Now let's copy all headings to one place:
This command searches our file for the lines starting with
First, we want to convert all
Second, we want our
Now our entries look like:
We no longer need
and replace closing tags with breaklines
|
|||||||||||||||||||||||||||||||||||||||||||||||||
5.3 Working with TablesQuite often you have to work with a text organized in tables/columns. Consider, for example, the following text
Suppose we want to change all "Europe" cells in the third column to "Asia":
To swap the first and the last columns:
To be continued... |
|||||||||||||||||||||||||||||||||||||||||||||||||
| Here I would like to compare Vim's regexp implementation with others, in particular, Perl's. You can't talk about regular expressions without mentioning Perl. To be written... | |||||||||||||||||||||||||||||||||||||||||||||||||
|
Read VIM documentation about pattern and searching - type ":help pattern" in VIM normal mode to get this information. The only book I know of which deals with VIM/vi regular expressions is the same "Learning the vi Editor" by Linda Lamb and Arnold Robbins. Definitive reference on regular expressions is Jeffrey Friedl's "Mastering Regular Expressions" published by O'Reilly & Associates, but it mostly deals with Perl regular expressions. Note that Perl regexp flavor is a bit different from VIM's. O'Reilly has one of the book chapters available online. Others sources: practically every Perl book has some information on regular expressions. |
|||||||||||||||||||||||||||||||||||||||||||||||||