Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get the extension of a file contained in an NSString

I have an NSMutable dictionary that contains file IDs and their filename+extension in the simple form of fileone.doc or filetwo.pdf. I need to determine what type of file it is to correctly display a related icon in my UITableView. Here is what I have done so far.

NSString *docInfo = [NSString stringWithFormat:@"%d", indexPath.row]; //Determine what cell we are formatting
NSString *fileType = [contentFiles objectForKey:docInfo]; //Store the file name in a string

I wrote two regex to determine what type of file I'm looking at, but they never return a positive result. I haven't used regex in iOS programming before, so I'm not entirely sure if I'm doing it right, but I basically copied the code from the Class Description page.

    NSError *error = NULL;
NSRegularExpression *regexPDF = [NSRegularExpression regularExpressionWithPattern:@"/^.*\\.pdf$/" options:NSRegularExpressionCaseInsensitive error:&error];
NSRegularExpression *regexDOC = [NSRegularExpression regularExpressionWithPattern:@"/^.*\\.(doc|docx)$/" options:NSRegularExpressionCaseInsensitive error:&error];
    NSUInteger numMatch = [regexPDF numberOfMatchesInString:fileType options:0 range:NSMakeRange(0, [fileType length])];
    NSLog(@"How many matches were found? %@", numMatch);

My questions would be, is there an easier way to do this? If not, are my regex incorrect? And finally if I have to use this, is it costly in run time? I don't know what the average amount of files a user will have will be.

Thank you.

like image 338
jer-k Avatar asked Feb 11 '12 23:02

jer-k


5 Answers

You're looking for [fileType pathExtension]

NSString Documentation: pathExtension

like image 144
David Barry Avatar answered Nov 09 '22 15:11

David Barry


//NSURL *url = [NSURL URLWithString: fileType];
NSLog(@"extension: %@", [fileType pathExtension]);

Edit you can use pathExtension on NSString

Thanks to David Barry

like image 33
remy Avatar answered Nov 09 '22 14:11

remy


Try this :

NSString *fileName = @"resume.doc";  
NSString *ext = [fileName pathExtension];
like image 4
Aatish Javiya Avatar answered Nov 09 '22 14:11

Aatish Javiya


Try this, it works for me.

NSString *fileName = @"yourFileName.pdf";
NSString *ext = [fileName pathExtension];

Documentation here for NSString pathExtension

like image 3
Ashu Avatar answered Nov 09 '22 15:11

Ashu


Try using [fileType pathExtension] to get the extension of the file.

like image 1
Eric Avatar answered Nov 09 '22 13:11

Eric