show/hide this revision's text 2 added 85 characters in body

If you are using Perl 5.10, this is how I would write it.

m{
  ^
  \s*       # skip leading spaces

  (?'whole'
   \d*
  d++
   (?! \s*[\/] )   # there should not be a slash immediately following a whole number
  )

  \s*

  (?:    # the rest should fail or succeed as a group

    -?        # ignore possible neg sign
    \s*

    (?'numerator'
     \d+
    )

    \s*
    [\/]
    \s*

    (?'denominator'
     \d+
    )
  )?
}x

Then you can access the values from the %+ variable like this:

$+{whole};
$+{numerator};
$+{denominator};
show/hide this revision's text 1

If you are using Perl 5.10, this is how I would write it.

m{
  ^
  \s*       # skip leading spaces

  (?'whole'
   \d*
  )

  \s*

  (?:    # the rest should fail or succeed as a group

    -?        # ignore possible neg sign
    \s*

    (?'numerator'
     \d+
    )

    \s*
    [\/]
    \s*

    (?'denominator'
     \d+
    )
  )?
}x

Then you can access the values from the %+ variable like this:

$+{whole};
$+{numerator};
$+{denominator};