खोज…
NSURL स्ट्रिंग से अंतिम स्ट्रिंग घटक कैसे प्राप्त करें।
NSURL *url = [NSURL URLWithString:@"http://www.example.com/images/apple-tree.jpg"];
NSString *fileName = [url lastPathComponent];
// fileName = "apple-tree.jpg"
स्विफ्ट में URL (NSURL) से अंतिम स्ट्रिंग कंपोनेंट कैसे प्राप्त करें
स्विफ्ट 2.3
let url = NSURL(string: "http://google.com/lastPath")
let lastPath = url?.lastPathComponent
स्विफ्ट 3.0
let url = URL(string: "http://google.com/lastPath")
let lastPath = url?.lastPathComponent
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow