Pushr (master) :  summary log tree commit diff
path: root/tests/testnsstring.m blob: fe1e819d3265843e7c1218cf2a84b15cd904b262
1#import <Foundation/Foundation.h>
2
3int main(int argc, char *argv[])
4{
5 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
6
7 NSString *jpgPath = @"/path/to/IMG_0025.JPG";
8 NSString *ss = [[[jpgPath pathComponents] lastObject] substringWithRange: NSMakeRange(4, 4)];
9 NSLog(@"Substring: %@ (int value: %d)", ss, [ss intValue]);
10 NSString *thumbnailPath = [[jpgPath stringByDeletingPathExtension] stringByAppendingPathExtension: @"THM"];
11 NSLog(@"thumbnailPath: %@", thumbnailPath);
12
13 [pool release];
14 return 0;
15}
16