8,074 reputation
1047136
bio website linkedin.com/pub/parth-bhatt/…
location Baroda, Gujarat, India
age 24
visits member for 2 years, 7 months
seen 15 hours ago
stats profile views 2,722

I am iPhone and iPad developer.

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

^[-_,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];

Mar
30
awarded  Popular Question
Mar
29
revised How to get image path from photo library and how to retrieve the image from photo library in iphone?
added 1 characters in body
Mar
21
awarded  Notable Question
Mar
21
awarded  Popular Question
Mar
20
awarded  Popular Question
Mar
19
awarded  Notable Question
Mar
18
awarded  Popular Question
Mar
9
comment Embedd facebook video in my website
@Igy can you please explain me about this. How can we fetch raw URL and where can we fetch it from?
Mar
3
awarded  Popular Question
Feb
27
awarded  Caucus
Feb
22
awarded  Famous Question
Feb
20
awarded  Popular Question
Feb
14
awarded  Notable Question
Feb
9
comment qrcode format for geolocation
Accept Your Own Answer, if that has worked for you.
Feb
9
revised How to record a video from video in app
deleted 29 characters in body
Feb
9
revised Keyboard hides TabBar
deleted 10 characters in body
Feb
9
revised tab bar second tap pops to navigation controller - how to stop it
added 51 characters in body
Feb
9
revised iOS device is not listed in Xcode
deleted 6 characters in body
Feb
6
comment Out Of Scope Summary Unavailable while debugging
Post some code to exactly get to the root of the problem.
Feb
6
revised Out Of Scope Summary Unavailable while debugging
deleted 114 characters in body