Regex to match sloppy fractions / mixed numbers - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T16:03:29Zhttp://stackoverflow.com/feeds/question/245345http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/245345/regex-to-match-sloppy-fractions-mixed-numbers3Regex to match sloppy fractions / mixed numbersCraig Walker2008-10-29T00:13:32Z2008-10-30T04:07:45Z
<p>I have a series of text that contains mixed numbers (ie: a whole part and a fractional part). The problem is that the text is full of human-coded sloppiness:</p>
<ol>
<li>The whole part may or may not exist (ex: "10")</li>
<li>The fractional part may or may not exist (ex: "1/3")</li>
<li>The two parts may be separated by spaces and/or a hyphens (ex: "10 1/3", "10-1/3", "10 - 1/3").</li>
<li>The fraction itself may or may not have spaces between the number and the slash (ex: "1 /3", "1/ 3", "1 / 3").</li>
<li>There may be other text after the fraction that needs to be ignored</li>
</ol>
<p>I need a regex that can parse these elements so that I can create a proper number out of this mess.</p>
http://stackoverflow.com/questions/245345/regex-to-match-sloppy-fractions-mixed-numbers/245351#2453511Answer by Craig Walker for Regex to match sloppy fractions / mixed numbersCraig Walker2008-10-29T00:16:33Z2008-10-29T00:16:33Z<p>Here's a regex that will handle all of the data I can throw at it:</p>
<pre><code>(\d++(?! */))? *-? *(?:(\d+) */ *(\d+))?.*$
</code></pre>
<p>This will put the digits into the following groups:</p>
<ol>
<li>The whole part of the mixed number, if it exists</li>
<li>The numerator, if a fraction exits</li>
<li>The denominator, if a fraction exists</li>
</ol>
<p>Also, here's the RegexBuddy explanation for the elements (which helped me immensely when constructing it):</p>
<pre><code>Match the regular expression below and capture its match into backreference number 1 «(\d++(?! */))?»
Between zero and one times, as many times as possible, giving back as needed (greedy) «?»
Match a single digit 0..9 «\d++»
Between one and unlimited times, as many times as possible, without giving back (possessive) «++»
Assert that it is impossible to match the regex below starting at this position (negative lookahead) «(?! */)»
Match the character “ ” literally « *»
Between zero and unlimited times, as many times as possible, giving back as needed (greedy) «*»
Match the character “/” literally «/»
Match the character “ ” literally « *»
Between zero and unlimited times, as many times as possible, giving back as needed (greedy) «*»
Match the character “-” literally «-?»
Between zero and one times, as many times as possible, giving back as needed (greedy) «?»
Match the character “ ” literally « *»
Between zero and unlimited times, as many times as possible, giving back as needed (greedy) «*»
Match the regular expression below «(?:(\d+) */ *(\d+))?»
Between zero and one times, as many times as possible, giving back as needed (greedy) «?»
Match the regular expression below and capture its match into backreference number 2 «(\d+)»
Match a single digit 0..9 «\d+»
Between one and unlimited times, as many times as possible, giving back as needed (greedy) «+»
Match the character “ ” literally « *»
Between zero and unlimited times, as many times as possible, giving back as needed (greedy) «*»
Match the character “/” literally «/»
Match the character “ ” literally « *»
Between zero and unlimited times, as many times as possible, giving back as needed (greedy) «*»
Match the regular expression below and capture its match into backreference number 3 «(\d+)»
Match a single digit 0..9 «\d+»
Between one and unlimited times, as many times as possible, giving back as needed (greedy) «+»
Match any single character that is not a line break character «.*»
Between zero and unlimited times, as many times as possible, giving back as needed (greedy) «*»
Assert position at the end of the string (or before the line break at the end of the string, if any) «$»
</code></pre>
http://stackoverflow.com/questions/245345/regex-to-match-sloppy-fractions-mixed-numbers/245399#2453991Answer by Glomek for Regex to match sloppy fractions / mixed numbersGlomek2008-10-29T00:35:59Z2008-10-29T00:35:59Z<p>I think it may be easier to tackle the different cases (full mixed, fraction only, number only) separately from each other. For example:</p>
<pre><code>sub parse_mixed {
my($mixed) = @_;
if($mixed =~ /^ *(\d+)[- ]+(\d+) *\/ *(\d)+(\D.*)?$/) {
return $1+$2/$3;
} elsif($mixed =~ /^ *(\d+) *\/ *(\d+)(\D.*)?$/) {
return $1/$2;
} elsif($mixed =~ /^ *(\d+)(\D.*)?$/) {
return $1;
}
}
print parse_mixed("10"), "\n";
print parse_mixed("1/3"), "\n";
print parse_mixed("1 / 3"), "\n";
print parse_mixed("10 1/3"), "\n";
print parse_mixed("10-1/3"), "\n";
print parse_mixed("10 - 1/3"), "\n";
</code></pre>
http://stackoverflow.com/questions/245345/regex-to-match-sloppy-fractions-mixed-numbers/249236#2492360Answer by Brad Gilbert for Regex to match sloppy fractions / mixed numbersBrad Gilbert2008-10-30T04:02:33Z2008-10-30T04:07:45Z<p>If you are using <code>Perl 5.10</code>, this is how I would write it.</p>
<pre>
m{
^
\s* # skip leading spaces
(?'whole'
\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
</pre>
<p>Then you can access the values from the <code>%+</code> variable like this:</p>
<pre><code>$+{whole};
$+{numerator};
$+{denominator};
</code></pre>