http://www.perlmonks.org?node_id=473491


in reply to Re^3: How do i extract 3 variables from each line in a file, and print them to a new file
in thread How do i extract 3 variables from each line in a file, and print them to a new file

I realized that and updated one works :)

And in the solution above, last \D+ can stay \D+ instead of \D* because "ms" is two letters, and \D+ gets at least one so it also matches two but not matches zero occurrences (as opposed to \D*, which does)

--------------------------------
An idea is not responsible for the people who believe in it...

  • Comment on Re^4: How do i extract 3 variables from each line in a file, and print them to a new file

Replies are listed 'Best First'.
Re^5: How do i extract 3 variables from each line in a file, and print them to a new file
by davidrw (Prior) on Jul 08, 2005 at 16:43 UTC
    right, but that solution won't match a line that ends with "123ms456ms789" .. (if you're strictly following OP's 'match 3 numbers' requirement and not using the ":ms" formatting at all)