6,032 reputation
32371
bio website linkedin.com/pub/parth-bhatt/…
location Baroda, Gujarat, India
age 23
visits member for 1 year, 8 months
seen 2 days ago
stats profile views 2,059

I am iPhone and iPad developer.

profile for Parth Bhatt on Stack Exchange, a network of free, community-driven Q&A sites

NSRegularExpression *reg = [NSRegularExpression regularExpressionWithPattern:@"(#[a-zA-Z0-9_-]+)" options:NSRegularExpressionCaseInsensitive error:nil];

NSString *stringData = @"This is Parth known as #parth and my friend is noone. I am fan of #scganguly.";

int count = [reg numberOfMatchesInString:stringData options:0 range:NSMakeRange(0, [stringData length])];

NSLog(@"%d",count);

if(count>0)
{
   NSArray *array =  [reg matchesInString:stringData options:0 range:NSMakeRange(0, [stringData length])];
    NSLog(@"%@",array);
    NSMutableArray *stringArray = [[NSMutableArray alloc] init];
    for (NSTextCheckingResult *result in array) {
        NSString *stringFinal = [stringData substringWithRange:result.range];
        if(stringFinal != nil)
        {
            [stringArray addObject:stringFinal];
        }
    }
    NSLog(@"stringArray: %@",stringArray);
}

For @user: @"(@[a-zA-Z0-9_]+)"


231
× 438
33
× 185
134
× 270
18
× 25
66
× 77
13
× 18
39
× 199
12
× 38
34
× 42
10
× 19
Stack Overflow Stack Overflow 6,032 rep 32371
Area 51 Area 51 151 rep 1
Meta Stack Overflow Meta Stack Overflow 128 rep 4
Super User Super User 123 rep 5
Programmers Programmers 121 rep 2
all time   by type   month  
743 up 353 question 20
135 down 525 answer