in reply to Print the line with the largest number from standard input
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 |