Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Print the line with the largest number from standard input

by daxim (Curate)
on Jul 22, 2019 at 12:21 UTC ( [id://11103135]=note: print w/replies, xml ) Need Help??


in reply to Print the line with the largest number from standard input

In short: the intent is it matches numbers that look like -1.2, 2.347, 47., -.58 and similar. Flag /g means global, that is to say match several times on the target variable $line, not only once. Read any book or tutorial on regex. There are also many Web sites that analyse and explain regex similar to the output below.
YAPE-Regex-Explain-4.01› perl examples/explain \-?(?:\d+\.?\d*|\.\d+) The regular expression: (?-imsx:\-?(?:\d+\.?\d*|\.\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): ---------------------------------------------------------------------- \-? '-' (optional (matching the most amount possible)) ---------------------------------------------------------------------- (?: group, but do not capture: ---------------------------------------------------------------------- \d+ digits (0-9) (1 or more times (matching the most amount possible)) ---------------------------------------------------------------------- \.? '.' (optional (matching the most amount possible)) ---------------------------------------------------------------------- \d* digits (0-9) (0 or more times (matching the most amount possible)) ---------------------------------------------------------------------- | OR ---------------------------------------------------------------------- \. '.' ---------------------------------------------------------------------- \d+ digits (0-9) (1 or more times (matching the most amount possible)) ---------------------------------------------------------------------- ) end of grouping ---------------------------------------------------------------------- ) end of grouping ----------------------------------------------------------------------

Replies are listed 'Best First'.
Re^2: Print the line with the largest number from standard input
by AnomalousMonk (Archbishop) on Jul 22, 2019 at 16:22 UTC
Re^2: Print the line with the largest number from standard input
by Anonymous Monk on Jul 23, 2019 at 02:46 UTC

    Thank you a lot for your help! This is very helpful!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11103135]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (5)
As of 2024-04-23 07:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found