Extracting a regex matched with 'sed' without printing the surrounding characters
While not sed
, one of things often overlooked for this is grep -o
, which in my opinion is the better tool for this task.
For example, if you want to get all the CONFIG_
parameters from a kernel config, you would use:
# grep -Eo 'CONFIG_[A-Z0-9_]+' config
CONFIG_64BIT
CONFIG_X86_64
CONFIG_X86
CONFIG_INSTRUCTION_DECODER
CONFIG_OUTPUT_FORMAT
If you want to get contiguous sequences of numbers:
$ grep -Eo '[0-9]+' foo
When a regexp contains groups, there may be more than one way to match a string against it: regexps with groups are ambiguous. For example, consider the regexp ^.*\([0-9][0-9]*\)$
and the string a12
. There are two possibilities:
- Match
a
against.*
and2
against[0-9]*
;1
is matched by[0-9]
. - Match
a1
against.*
and the empty string against[0-9]*
;2
is matched by[0-9]
.
Sed, like all other regexp tools out there, applies the earliest longest match rule: it first tries to match the first variable-length portion against a string that's as long as possible. If it finds a way to match the rest of the string against the rest of the regexp, fine. Otherwise, sed tries the next longest match for the first variable-length portion and tries again.
Here, the match with the longest string first is a1
against .*
, so the group only matches 2
. If you want the group to start earlier, some regexp engines let you make the .*
less greedy, but sed doesn't have such a feature. So you need to remove the ambiguity with some additional anchor. Specify that the leading .*
cannot end with a digit, so that the first digit of the group is the first possible match.
If the group of digits cannot be at the beginning of the line:
sed -n 's/^.*[^0-9]\([0-9][0-9]*\).*/\1/p'
If the group of digits can be at the beginning of the line, and your sed supports the
\?
operator for optional parts:sed -n 's/^\(.*[^0-9]\)\?\([0-9][0-9]*\).*/\1/p'
If the group of digits can be at the beginning of the line, sticking to standard regexp constructs:
sed -n -e 's/^.*[^0-9]\([0-9][0-9]*\).*/\1/p' -e t -e 's/^\([0-9][0-9]*\).*/\1/p'
By the way, it's that same earliest longest match rule that makes [0-9]*
match the digits after the first one, rather than the subsequent .*
.
Note that if there are multiple sequences of digits on a line, your program will always extract the last sequence of digits, again because of the earliest longest match rule applied to the initial .*
. If you want to extract the first sequence of digits, you need to specify that what comes before is a sequence of non-digits.
sed -n 's/^[^0-9]*\([0-9][0-9]*\).*$/\1/p'
More generally, to extract the first match of a regexp, you need to compute the negation of that regexp. While this is always theoretically possible, the size of the negation grows exponentially with the size of the regexp you're negating, so this is often impractical.
Consider your other example:
sed -n 's/.*\(CONFIG_[a-zA-Z0-9_]*\).*/\1/p'
This example actually exhibits the same issue, but you don't see it on typical inputs. If you feed it hello CONFIG_FOO_CONFIG_BAR
, then the command above prints out CONFIG_BAR
, not CONFIG_FOO_CONFIG_BAR
.
There's a way to print the first match with sed, but it's a little tricky:
sed -n -e 's/\(CONFIG_[a-zA-Z0-9_]*\).*/\n\1/' -e T -e 's/^.*\n//' -e p
(Assuming your sed supports \n
to mean a newline in the s
replacement text.) This works because sed looks for the earliest match of the regexp, and we don't try to match what precedes the CONFIG_…
bit. Since there is no newline inside the line, we can use it as a temporary marker. The T
command says to give up if the preceding s
command didn't match.
When you can't figure out how to do something in sed, turn to awk. The following command prints the earliest longest match of a regexp:
awk 'match($0, /[0-9]+/) {print substr($0, RSTART, RLENGTH)}'
And if you feel like keeping it simple, use Perl.
perl -l -ne '/[0-9]+/ && print $&' # first match
perl -l -ne '/^.*([0-9]+)/ && print $1' # last match
sed '/\n/P;//!s/[0-9]\{1,\}/\n&\n/;D'
...will do this w/out any fuss, though you may need literal newlines in place of the n
s in the right-hand substitution field. And, by the way, the .*CONFIG
thing would only work if there were only the one match on the line - it would otherwise always get only the last.
You can see this for a description of how it works, but this will print on a separate line only the match as many times as it occurs on a line.
You can use the same strategy to get the [num]
th occurrence on a line. For example, if you wanted to print the CONFIG match only if it was the third such on a line:
sed '/\n/P;//d;s/CONFIG[[:alnum:]]*/\n&\n/3;D'
...though that assumes the CONFIG
strings are separated by at least one non-alphanumeric character for each occurrence.
I suppose - for the number thing - this would also work:
sed -n 's/[^0-9]\{1,\}/\n/g;s/\n*\(.*[0-9]\).*/\1/p
...with the same caveat as before about the right-hand \n
. This one would even be faster than the first, but cannot apply as generally, obviously.
For the CONFIG thing you could use the P;...;D
loop above with your pattern, or you could do:
sed -n 's/[^C]*\(CONFIG[[:alnum:]]*\)\{0,1\}C\{0,1\}/\1\n/g;s/\(\n\)*/\1/g;/C/s/.$//p'
...which is just a little more involved and works by correctly ordering sed
's reference priority. It also isolates all CONFIG matches on a line in one go - though it does make the same assumption as before though - that each CONFIG match will be separated by at least one non-alphanumeric character. With GNU sed
you could write it:
sed -En 's/[^C]*(CONFIG\w*)?C?/\1\n/g;s/(\n)*/\1/g;/C/s/.$//p'