Notice
목록파일명 (1)
일상에서 멍때리기
NSString에서 파일명 추출하기
예를 들어 /Users/user/Projects/thefile.ext와 같은 풀패스가 들어있는 NSString에서 thefile.txt만 추출하기 위해서는 다음과 같은 방법을 사용하면 된다. NSString *filename = [string lastPathComponent];그렇다면 여기서 확장자 명까지 제거하고 싶다면? NSString *filename = [[string lastPathComponent] stringByDeletingPathExtension];
프로그래밍/삽질로그
2014. 4. 14. 23:38