Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am making a calculator that has a roman numeral mode. I have the operations performed in the model view, and a view controller. My problem is that I need to convert the roman numeral to a NSNumber. There is a UILabel, and the view controller takes what is in the label and sets it as the operand of the model view. Does anyone know how I can take the roman numeral from the label and make it a NSNumber? Here is some code:

- (IBAction)digitPressed:(UIButton *)sender {


    NSString *digit = [[sender titleLabel] text];
    if (self.userIsTypingNumber) {
      [self.display setText:[self.display.text stringByAppendingString:digit]];
    } else {
        [self.display setText:digit];
        self.userIsTypingNumber = YES;
    }
}

- (IBAction)operationPressed:(UIButton *)sender {

    if (self.userIsTypingNumber) {
        if ([self isValidForRoman:self.display.text] == YES) {
            //find out what roman numeral is in the display
        } else {
        NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc]init];
        [numberFormatter setNumberStyle: NSNumberFormatterDecimalStyle];
        NSNumber *n = [numberFormatter numberFromString:self.display.text];
        [[Model singleton] setOperand:n];
        self.userIsTypingNumber = NO;
        }
    }
    NSString *operation = [[sender titleLabel] text];
    NSNumber *result = [[Model singleton] performOperation:operation];
    [self.display setText:[NSString stringWithFormat:@"%@", result]];
}

- (IBAction)clearDigitPressed:(UIButton *)sender {

    [self.display setText:@""];
}

- (IBAction)clearOperationPressed:(UIButton *)sender {

    [[Model singleton] performOperation:nil];
    [self.display setText:@""];
}

- (IBAction)changeNumeralType:(id)sender {

    switch ([sender selectedSegmentIndex]) {
        case 0:
        {            
            [self.button1 setTitle:@"1" forState:UIControlStateNormal];
            [self.button2 setTitle:@"2" forState:UIControlStateNormal];
            [self.button3 setTitle:@"3" forState:UIControlStateNormal];
            [self.button4 setTitle:@"4" forState:UIControlStateNormal];
            [self.button5 setTitle:@"5" forState:UIControlStateNormal];
            [self.button6 setTitle:@"6" forState:UIControlStateNormal];
            [self.button7 setTitle:@"7" forState:UIControlStateNormal];
            [self.button8 setTitle:@"8" forState:UIControlStateNormal];
            [self.button9 setTitle:@"9" forState:UIControlStateNormal];
            [self.button0 setTitle:@"0" forState:UIControlStateNormal];
        } break;

        case 1:
        {
            [self.button1 setTitle:@"L" forState:UIControlStateNormal];
            [self.button2 setTitle:@"C" forState:UIControlStateNormal];
            [self.button3 setTitle:@"D" forState:UIControlStateNormal];
            [self.button4 setTitle:@"I" forState:UIControlStateNormal];
            [self.button5 setTitle:@"V" forState:UIControlStateNormal];
            [self.button6 setTitle:@"X" forState:UIControlStateNormal];
            [self.button7 setTitle:@"" forState:UIControlStateNormal];
            [self.button8 setTitle:@"" forState:UIControlStateNormal];
            [self.button9 setTitle:@"" forState:UIControlStateNormal];
            [self.button0 setTitle:@"M" forState:UIControlStateNormal];

        } break;

    }
}

- (BOOL)isValidForRoman:(NSString *)text
{
    NSString *romanRegex = @"^(?=.)(?i)M*(D?C{0,3}|C[DM])(L?X{0,3}|X[LC])(V?I{0,3}|I[VX])$";
    NSPredicate *romanTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", romanRegex];
    return ([romanTest evaluateWithObject:text]);
}
share|improve this question
1  
Well, unless you're dealing with floating-point Roman numerals, I'd convert to int or long first. NSNumber is a red herring. – Hot Licks Feb 7 at 22:34
2  
(And converting Roman numerals to int/long is a classical homework assignment.) – Hot Licks Feb 7 at 22:36
I am new to Objective-c, so could you help me out converting it to an long? – Chandler De Angelis Feb 7 at 22:43
It doesn't matter how you store the numbers. Problem is the same. – iMartin Feb 7 at 22:45
1  
The problem is simply writing code to look at a character string of Roman numerals and understand what they mean. If it weren't for the "backwards" combos this would be trivial -- just assign a weight to each character, but with the "backwards" combos you actually have to code some logic. Thought required. – Hot Licks Feb 7 at 23:57
show 1 more comment

1 Answer

up vote -1 down vote accepted

Here are a couple of resources that may help you:

Roman Numbers Convert -This one is probably the better of the two as this has forward/backward translation

pzearfoss / NSNumber-RomanNumerals -This is a simple category; however, it only converts NSNumber to Roman Numeral. You may be able to tweak it to go the other way around.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.