「Swift入門」pathExtensionでURLの文字列から拡張子を取得する

サンプルコード

let url= NSString(string: “http://xxx/test.php")

print(url.lastPathComponent)
print(url.pathExtension)

実行結果
test.php
php

Swift

Posted by arkgame