You are here

Combining searching and extracting

24 February, 2015 - 10:28

If we want to find numbers on lines that start with the string “X-” such as:

X-DSPAM-Confidence: 0.8475X-DSPAM-Probability: 0.0000

We don’t just want any floating point numbers from any lines. We only to extract numbers from lines that have the above syntax.

We can construct the following regular expression to select the lines:

ˆX-.*: [0-9.]+

Translating this, we are saying, we want lines that start with “X-” followed by zero or more characters “.*” followed by a colon (“:”) and then a space. After the space we are looking for one or more characters that are either a digit (0-9) or a period “[0-9.]+”. Note that in between the square braces, the period matches an actual period (i.e. it is not a wildcard between the square brackets).

This is a very tight expression that will pretty much match only the lines we are interested in as follows:

import re hand = open('mbox-short.txt')  
for line in hands:    line = line.rstrip()     if re.search('ˆX\S*: [0-9.]+', line) :         print line

When we run the program, we see the data nicely filtered to show only the lines we are looking for.

X-DSPAM-Confidence: 0.8475X-DSPAM-Probability: 0.0000X-DSPAM-Confidence: 0.6178X-DSPAM-Probability: 0.0000

But now we have to solve the problem of extracting the numbers using split. While it would be simple enough to use split, we can use another feature of regular expressions to both search and parse the line at the same time.

Parentheses are another special character in regular expressions. When you add parentheses to a regular expression they are ignored when matching the string, but when you are using findall(), parentheses indicate that while you want the whole expression to match, you only are interested in extracting a portion of the substring that matches the regular expression.

So we make the following change to our program:

import re hand = open('mbox-short.txt')for line in hand:    line = line.rstrip()    x = re.findall('ˆX\S*: ([0-9.]+)', line)    if len(x) > 0 :        print x

Instead of calling search(), we add parentheses around the part of the regular expression that represents the floating point number to indicate we only want findall() to give us back the floating point number portion of the matching string.

The output from this program is as follows:

['0.8475']['0.0000']['0.6178']['0.0000']['0.6961']['0.0000']..

The numbers are still in a list and need to be converted from strings to floating point but we have used the power of regular expressions to both search and extract the information we found interesting.

As another example of this technique, if you look at the file there are a number of lines of the form:

Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39772

If we wanted to extract all of the revision numbers (the integer number at the end of these lines) using the same technique as above, we could write the following program:

import re
hand = open('mbox-short.txt')
for line in hand:
    line = line.rstrip()
    x = re.findall('ˆDetails:.*rev=([0-9.]+)', line)
    if len(x) > 0:
        print x

Translating our regular expression, we are looking for lines that start with “Details:’, followed by any any number of characters “.*” followed by “rev=” and then by one or more digits. We want lines that match the entire expression but we only want to extract the integer number at the end of the line so we surround “[0-9]+” with parentheses.

When we run the program, we get the following output:

['39772']['39771']['39770']['39769']...

Remember that the “[0-9]+” is “greedy” and it tries to make as large a string of digits as possible before extracting those digits. This “greedy” behavior is why we get all five digits for each number. The regular expression library expands in both directions until it counters a non-digit, the beginning, or the end of a line.

Now we can use regular expressions to re-do an exercise from earlier in the book where we were interested in the time of day of each mail message. We looked for lines of the form:

From stephen.marquard@uct.ac.za Sat Jan 5 09:14:16 2008 

And wanted to extract the hour of the day for each line. Previously we did this with two calls to split. First the line was split into words and then we pulled out the fifth word and split it again on the colon character to pull out the two characters we were interested in.

While this worked, it actually results in pretty brittle code that is assuming the lines are nicely formatted. If you were to add enough error checking (or a big try/except block) to insure that your program never failed when presented with incorrectly formatted lines, the code would balloon to 10-15 lines of code that was pretty hard to read.

We can do this far simpler with the following regular expression:

ˆFrom .* [0-9][0-9]:

The translation of this regular expression is that we are looking for lines that start with “From ” (note the space) followed by any number of characters “.*” followed by a space followed by two digits “[0-9][0-9]” followed by a colon character. This is the definition of the kinds of lines we are looking for.

In order to pull out only the hour using findall(), we add parentheses around the two digits as follows:

ˆFrom .* ([0-9][0-9]):

This results in the following program:

import rehand = open('mbox-short.txt')for line in hand:    line = line.rstrip()    x = re.findall('ˆFrom .* ([0-9][0-9]):', line)    if len(x) > 0 : print x

When the program runs, it produces the following output:

['09']['18']['16']['15']