| bio | website | linkedin.com/pub/parth-bhatt/… |
|---|---|---|
| location | Baroda, Gujarat, India | |
| age | 24 | |
| visits | member for | 2 years, 7 months |
| seen | yesterday | |
| stats | profile views | 2,723 |
I am iPhone and iPad developer.
^[-_,A-Za-z0-9]$
NSRegularExpression *reg = [NSRegularExpression regularExpressionWithPattern:@"(#[a-zA-Z0-9_-]+)" options:NSRegularExpressionCaseInsensitive error:nil];
NSString *stringData = @"This is Parth known as #parth and this is an awesome place. 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_]+)"
NSLog(@"Request String: %@", requestString);
NSData *requestData = [NSData dataWithBytes: [requestString UTF8String] length: [requestString length]];
// NSString *fileLoc = [[NSBundle mainBundle] pathForResource:@"url" ofType:@"plist" ];
// NSDictionary *fileContents = [[NSDictionary alloc] initWithContentsOfFile:fileLoc];
// NSString *urlLoc = [fileContents objectForKey:@"baseURL"];
NSString *urlLoc = @"http://portal.abc.com/candidate/post-info";
NSLog(@"URL is %@",urlLoc);
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:
[NSURL URLWithString: urlLoc]];
NSString *postLength = [NSString stringWithFormat:@"%d", [requestData length]];
[request setHTTPMethod: @"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody: requestData];
|
|
Stack Overflow | 8,069 rep | 1047136 |
|
|
Area 51 | 151 rep | 1 |
|
|
Super User | 132 rep | 7 |
|
|
Meta Stack Overflow | 128 rep | 4 |
|
|
Programmers | 121 rep | 2 |
| Good Question | Famous Question × 9 |
| Notable Question × 34 | Custodian × 5 |
| Popular Question × 90 | Nice Answer × 4 |
| Nice Question × 4 | ios |
| Caucus × 4 | Yearling × 2 |
This user has no active bounties
922 Votes Cast
| all time | by type | ||||
|---|---|---|---|---|---|
| 778 | up | 375 | question | ||
| 144 | down | 547 | answer | ||