What does this line of Perl mean?
if (/ile.*= (\d*)/ || /ile.*=(\d*)/ ) {
I am particularly interested in what the "/ile" means, and why both sides of the || are identical.
|
The syntax The first The match is not tied to a Perl variable so it will be against the default scalar |
||||
|
You can rewrite this as
Use YAPE::Regex::Explain to understand what a given pattern matches.
Output:
The regular expression:
(?-imsx:ile.*= ?(\d*))
matches as follows:
NODE EXPLANATION
----------------------------------------------------------------------
(?-imsx: group, but do not capture (case-sensitive)
(with ^ and $ matching normally) (with . not
matching \n) (matching whitespace and #
normally):
----------------------------------------------------------------------
ile 'ile'
----------------------------------------------------------------------
.* any character except \n (0 or more times
(matching the most amount possible))
----------------------------------------------------------------------
= '='
----------------------------------------------------------------------
? ' ' (optional (matching the most amount
possible))
----------------------------------------------------------------------
( group and capture to \1:
----------------------------------------------------------------------
\d* digits (0-9) (0 or more times (matching
the most amount possible))
----------------------------------------------------------------------
) end of \1
----------------------------------------------------------------------
) end of grouping
----------------------------------------------------------------------
|
||||
|
|
It's probably a really crude way of looking for a string that looks like one of these: fileXXX=1234657 fileYYY= 123648 ... the 'ile' is literally matching those three characters, and the two sides of the |
||||
|
|
|
In this context, the "/" character is not acting as a mathematical division operator or as some kind of prefix (like for Windows command-line options). Rather, "/" is the usual quoting character for enclosing regular expressions. Everything between the pair of slashes forms a regular expression and does not denote any executable code, which brings us to what I suspect was another source of confusion by thinking that the "=" in there was some kind of assignment or equality operator. Inside a regular expression, it's just an ordinary character, as is the space character. Spaces are significant, and the presence or absence of one means that those two regular expressions are not identical. They can be consolidated into a single regular expression as demonstrated by Sinan's answer, using the "?" regular-expression operator. |
|||
|
|
||are not identical. One has a space between the=and the(– Sinan Ünür Nov 11 '09 at 21:43