I'm trying to match a math equation using regex (in Objective-C on an iPhone app), and could use help in coming up with a regex which works for the second scenario listed below.
I've created the following Objective-C code to extract an equation of the form (1÷4) or (-1÷4) if there's a negative number ahead of a product or divider: (I include this here to help explain the question I'm trying to answer)
NSString* equation = @"1+(-1÷4)";
NSString* matcher = @"(-){0,1}(\\.|\\d)+(÷|×){1,}";
NSRegularExpression *equation_regex = [NSRegularExpression regularExpressionWithPattern:matcher options:NSRegularExpressionCaseInsensitive error:nil];
while([equation_regex numberOfMatchesInString:working_function options:0 range:NSMakeRange(0, [equation length])])
{
// regex finds '-1÷4'
}
However, this falls apart for the following equation: 3-1÷4 where -1 shouldn't be extracted since it's not part of the 1÷4 in the equation.
I've attempted to alter the regex (with my limited regex expertise!) to exlucde the -1 IFF there's a number ahead of the - via the following:
NSString* equation = @"3-1÷4";
NSString* matcher = @"((^\\d)(-)){0,1}(\\.|\\d)+(÷|×){1,}";
NSRegularExpression *power_regex = [NSRegularExpression regularExpressionWithPattern:power_regex_pattern options:NSRegularExpressionCaseInsensitive error:nil];
while([power_regex numberOfMatchesInString:working_function options:0 range:NSMakeRange(0, [working_function length])])
{
}
Where the regex ((^\\d)(-)){0,1} is my attempt to only match the negative part if there's no leading digit on the - (i.e. 1÷4 and not -1÷4), which doesn't work, hence the question. I hope I've explained this sufficiently! Thanks in advance.
-operator, before you start to work out, i.e.1+(-1÷4)becomes1+(0-1÷4)and3-1÷4becomes3-1÷4(which is the same), and you won't have problem to create a common regular expression, and the final result has to be the same, because the leading zero won't change the formula. – holex Feb 13 at 22:56