| 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.
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_]+)"
|
|
Stack Overflow | 6,032 rep | 32371 |
|
|
Area 51 | 151 rep | 1 |
|
|
Meta Stack Overflow | 128 rep | 4 |
|
|
Super User | 123 rep | 5 |
|
|
Programmers | 121 rep | 2 |
This user has no active bounties
| all time | by type | month | |||||
|---|---|---|---|---|---|---|---|
| 743 | up | 353 | question | 20 | |||
| 135 | down | 525 | answer | ||||