Instance Property インスタンスプロパティ

lastPathComponent

The last path component of the receiver. レシーバの最後のパス構成要素。

Declaration 宣言

var lastPathComponent: String { get }

Discussion 議論

Path components are alphanumeric strings delineated by the path separator (slash “/”) or the beginning or end of the path string. Multiple path separators at the end of the string are stripped. パス構成要素は、パス分離子(スラッシュ “/”)またはパス文字列の始まりまたは終わりによって境界を明示される英字数字まじりの文字列です。文字列の終わりでの複数のパス分離子は、剥ぎ取られます。

The following table illustrates the effect of lastPathComponent on a variety of different paths: 以下の表は、lastPathComponentの効果を様々な異なるパスに関して図解します:

Receiver’s String Value レシーバのもつ文字列値

String Returned 返される文字列

/tmp/scratch.tiff

scratch.tiff

/tmp/scratch

scratch

/tmp/

tmp

scratch///

scratch

/

“/”

Note that this method only works with file paths (not, for example, string representations of URLs). このメソッドはファイルパスでのみ働くことに注意してください(例えば、URLの文字列表現ではなく)。

See Also 参照

Working with Paths パスを扱う