Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

scan string using nsscanner class

Tags:

objective-c

I want to scan this string

"hello I am emp 1313 object of string class 123"

so in this I want to know if their are any integer value present and if present I want to display them for this I am using the NSScanner class and heres a view of my code

NSString *str = @" hello I am emp 1313 object of string class 123";

NSString *limit = @" object";
NSScanner *scanner = [NSScanner scannerWithString:str];

int i;
[scanner scanInt:&i];
NSString *output;
[scanner scanUpToString:limit intoString:&output];
NSLog(@"%d",i);

but the problem is that I am not able to do it and I want to use NSScanner class only so can you experts give me some suggesstions regarding this.....

like image 430
Radix Avatar asked Dec 22 '22 22:12

Radix


1 Answers

Give this a try:

NSString *str = @" hello i am emp 1313 object of string class 123";
NSScanner *scanner = [NSScanner scannerWithString:str];

// set it to skip non-numeric characters
[scanner setCharactersToBeSkipped:[[NSCharacterSet decimalDigitCharacterSet] invertedSet]];

int i;
while ([scanner scanInt:&i])
{
    NSLog(@"Found int: %d",i);
}

// reset the scanner to skip numeric characters
[scanner setScanLocation:0];
[scanner setCharactersToBeSkipped:[NSCharacterSet decimalDigitCharacterSet]];

NSString *resultString;
while ([scanner scanUpToCharactersFromSet:[NSCharacterSet decimalDigitCharacterSet] intoString:&resultString]) {
    NSLog(@"Found string: %@",resultString);
}

It outputs:

2010-10-27 14:40:39.137 so[2482:a0f] Found int: 1313
2010-10-27 14:40:39.140 so[2482:a0f] Found int: 123
2010-10-27 14:40:39.141 so[2482:a0f] Found string:  hello i am emp 
2010-10-27 14:40:39.141 so[2482:a0f] Found string:  object of string class 
like image 67
Nick Moore Avatar answered Jan 08 '23 19:01

Nick Moore