I am new to iPhone.I have a small doubt in regular expressions that at present i am using regular expression below one in my project that is
NSRegularExpression *regularExpression = 
   [NSRegularExpression regularExpressionWithPattern:@"href=\"(.*).zip\"" 
                                             options:NSRegularExpressionCaseInsensitive 
                                               error:&error];
it searches the website viewsource and gives results which are in below pattern
href="kjv/36_Zep.zip"
href="kjv/37_Hag.zip"
but one of the link in view source is like below
href="kjv/38_Zec.zip        "
i want to ignore the white spaces after the .zip how it is possible if any body know this please help me
 
     
     
     
     
    