source | all docs for version 0.8.0 | all versions | oilshell.org
Oil has a new syntax for patterns, which appears between the / /
delimiters:
if (mystr ~ /d+ '.' d+/) {
echo 'mystr looks like a number N.M'
}
These patterns are intended to be familiar, but they differ from POSIX or Perl expressions in important ways. So we call them eggexes rather than regexes!
^
no longer means three totally
different things. See the critique at the end of this doc.egrep
(grep -E
)awk
sed --regexp-extended
!
, so you can visually audit them for catastrophic
backtracking. (Russ Cox, author of the RE2 engine, has
written extensively on this issue.)Here's a longer example:
# Define a subpattern. 'digit' and 'd' are the same.
$ var D = / digit{1,3} /
# Use the subpattern
$ var ip_pat = / D '.' D '.' D '.' D /
# This eggex compiles to an ERE
$ echo $ip_pat
[[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}
This means you can use it in a very simple way:
$ egrep $ip_pat foo.txt
TODO: You should also be able to inline patterns like this:
egrep $/d+/ foo.txt
NUL
bytes, etc.Eggexes have a consistent syntax:
dot
, space
, or s
'lit'
, $var
, etc.%start %end
HexDigit
. Important: these are spliced as syntax trees,
not strings, so you don't need to think about quoting.For example, it's easy to see that these patterns all match three characters:
/ d d d /
/ digit digit digit /
/ dot dot dot /
/ word space word /
/ 'ab' space /
/ 'abc' /
And that these patterns match two:
/ %start w w /
/ %start 'if' /
/ d d %end /
And that you have to look up the definition of HexDigit
to know how many
characters this matches:
/ %start HexDigit %end /
Constructs like . ^ $ \< \>
are deprecated because they break these rules.
.
Is Now dot
But .
is still accepted. It usually matches any character except a newline,
although this changes based on flags (e.g. dotall
, unicode
).
word
, w
, alnum
We accept both Perl and POSIX classes.
d
or digit
s
or space
w
or word
alpha
, alnum
, ...%this
%start
is ^
%end
is $
%input_start
is \A
%input_end
is \z
%last_line_end
is \Z
%word_start
is \<
%word_end
is \>
'abc'
"xyz $var"
$mychars
${otherchars}
x y
matches x
and y
in sequencex | y
matches x
or y
You can also write a more Pythonic alternative: x or y
.
Repetition is just like POSIX ERE or Perl:
x?
, x+
, x*
x{3}
, x{1,3}
We've reserved syntactic space for PCRE and Python variants:
x{L +}
, x{L 3,4}
x{P +}
, x{P 3,4}
You can negate named char classes:
/ ~digit /
and char class literals:
/ ~[ a-z A-Z ] /
Sometimes you can do both:
/ ~[ ~digit ] / # translates to /[^\D]/ in PCRE
# error in ERE because it can't be expressed
You can also negate "regex modifiers" / compilation flags:
/ word ; ignorecase / # flag on
/ word ; ~ignorecase / # flag off
/ word ; ~i / # abbreviated
In contrast, regexes have many confusing syntaxes for negation:
[^abc] vs. [abc]
[[^:digit:]] vs. [[:digit:]]
\D vs. \d
/\w/-i vs /\w/i
New in Eggex! You can reuse patterns with PatternName
.
See the example at the front of this document.
This is similar to how lex
and re2c
work.
If the host language discourages uppercase identifiers, use @pattern_name
instead.
()
and <>
Group with (pat)
('foo' | 'bar')+
See note below: POSIX ERE has no non-capturing groups.
Capture with <pat>
:
< d+ > # Becomes M.group(1)
Add a variable after :
for named capture:
< d+ : myvar> # Becomes M.group('myvar')
[]
Example:
[ a-f 'A'-'F' \xFF \u0100 \n \\ \' \" \0 ]
Terms:
a-f
or 'A' - 'F'
\n
, \x01
, \u0100
, etc.'abc'
"xyz"
$mychars
${otherchars}
Only letters, numbers, and the underscore may be unquoted:
/['a'-'f' 'A'-'F' '0'-'9']/
/[a-f A-F 0-9]/ # Equivalent to the above
/['!' - ')']/ # Correct range
/[!-)]/ # Syntax Error
Ranges must be separated by spaces:
No:
/[a-fA-F0-9]/
Yes:
/[a-f A-f 0-9]/
!
(Discouraged)If you want to translate to PCRE, you can use these.
!REF 1
!REF name
!AHEAD( d+ )
!NOT_AHEAD( d+ )
!BEHIND( d+ )
!NOT_BEHIND( d+ )
!ATOMIC( d+ )
Since they all begin with !
, You can visually audit your code for potential
performance problems.
;
)Flags or "regex modifiers" appear after the first semicolon:
/ digit+ ; ignorecase /
A translation preference appears after the second semicolon. It controls what regex syntax the eggex is translated to by default.
/ digit+ ; ignorecase ; ERE /
This expression has a translation preference, but no flags:
/ digit+ ;; ERE /
You can spread regexes over multiple lines and add comments:
var x = ///
digit{4} # year e.g. 2001
'-'
digit{2} # month e.g. 06
'-'
digit{2} # day e.g. 31
///
(Not yet implemented in Oil.)
(Still to be implemented.)
Testing and extracting matches:
if (mystr ~ pat) {
echo ${M.group(1)}
}
Iterative matching:
for (mystr ~ pat) { # Saves state like JavaScript's "sticky" bit
echo ${M.group(1)}
}
Slurping all like Python:
var matches = findall(s, / (d+) '.' (d+) /)
pass s => findall(/ (d+) '.' (d+) /) => var matches
Substitution:
var new = sub(s, /d+/, 'zz')
pass s => sub(/d+/, 'zz) => var new # Nicer left-to-right syntax
Splitting:
var parts = split(s, /space+/)
pass s => split(/space+/) => var parts
No:
/ c'foo\tbar' / # Match 7 characters including a tab, but it's hard to read
/ r'foo\tbar' / # The string must contain 8 chars including '\' and 't'
Yes:
# Instead, Take advantage of char literals and implicit regex concatenation
/ 'foo' \t 'bar' /
/ 'foo' \\ 'tbar' /
No:
'foo'+
$string_with_many_chars+
Yes:
<'foo'>+
<$string_with_many_chars>+
This is necessary because ERE doesn't have non-capturing groups like Perl's
(?:...)
, and - Eggex only does "dumb" translations. It doesn't silently
insert constructs that change the meaning of the pattern.
(Exception: Although ('foo')+
is a non-capturing group, it becomes a capturing
group when translating to ERE. This is for convenience / familiarity. Prefer
<'foo'>+
.)
No:
# ERE can't represent this, and 2 byte utf-8 encoding could be confused
with 2 bytes.
/ [ \u0100 ] /
Yes:
# This is accepted -- it's clear it matches one of two bytes.
/ [ \x61 \xFF ] /
ERE wants it like this:
[]abc]
These don't work:
[abc\]]
[abc]]
So in Oil you have to write it like this:
Yes:
/ [ ']' 'abc'] /
No:
/ [ 'abc' ']' ] /
/ [ 'abc]' ] /
Since we do a dumb syntactic translation, we can't detect whether it's on the front or back. You have to put it in the right place.
... because the same symbol can mean many things.
^
could mean:
[^abc]
^
like [abc^]
\
is used in:
\w
or \d
\b
\n
\+
?
could mean:
a?
a+?
(?P<named>\d+)
(?:noncapturing)
With egg expressions, each construct has a distinct syntax.
Bash:
if [[ $x =~ '[[:digit:]]+' ]]; then
echo 'x looks like a number
fi
Compare with Oil:
if (x ~ /digit+/) {
echo 'x looks like a number'
}
Perl:
$x =~ /\d+/
Oil:
x ~ /d+/
The Perl expression has three more punctuation characters:
~
, not =~
d
. If that's too short, you can
also write digit
.The eggex syntax can be incorporated into other tools and shells. It's designed to be separate from Oil -- hence the separate name.
Notes:
/ 'foo' \t 'sq' \' bar \n /
— i.e. implicit concatenation of strings and
characters, described above.Eggexes aren't backward compatible in general, but they retain some legacy
operators like ^ . $
to ease the transition. These expressions are valid
eggexes and valid POSIX EREs:
.*
^[0-9]+$
^.{1,3}|[0-9][0-9]?$
If "eggex" sounds too much like "regex" to you, simply say "egg expression". It won't be confused with "regular expression" or "regex".
All three languages support pattern composition and have quoted literals. And they have the goal of improving upon Perl 5 regex syntax, which has made its way into every major programming language (Python, Java, C++, etc.)
The main difference is that Eggexes are meant to be used with existing
regex engines. For example, you translate them to a POSIX ERE, which is
executed by egrep
or awk
. Or you translate them to a Perl-like syntax and
use them in Python, JavaScript, Java, or C++ programs.
Perl 6 and Rosie have their own engines that are more powerful than PCRE, Python, etc. That means they cannot be used this way.
dot
, %start
, and %end
Have More Precise Names?Because the meanings of .
^
and $
are usually affected by regex engine
flags, like dotall
, multiline
, and unicode
.
As a result, the names mean nothing more than "however your regex engine
interprets .
^
and $
".
As mentioned in the "Philosophy" section above, eggex only does a superficial, one-to-one translation. It doesn't understand the details of which characters will be matched under which engine.
Eggexes are implemented in Oil, but not yet set in stone.
Please try them, as described in this post and the README, and send us feedback!
You can create a new post on /r/oilshell
or a new message on #oil-discuss
on https://oilshell.zulipchat.com/ (log in
with Github, etc.)