Instance Method インスタンスメソッド

appendPathExtension(_:)

Appends the given path extension to self. 与えられたパス拡張子をselfに追加します。

Declaration 宣言

mutating func appendPathExtension(_ pathExtension: String)

Parameters パラメータ

pathExtension

The extension to append. 追加することになる拡張子。

Discussion 議論

If the URL has an empty path (e.g., http://www.example.com), then this function will do nothing. Certain special characters (for example, Unicode Right-To-Left marks) cannot be used as path extensions. If any of those are contained in pathExtension, the function will return the URL unchanged. URLが空のパスを持つならば(たとえば、http://www.example.com)、その時この関数は何もしません。特定の特殊文字(例えば、ユニコード右横書きマーク)は、パス拡張子として使用できません。それらのいずれかがpathExtensionに含まれるならば、関数は変化していないURLを返します。

See Also 参照

Adding a Path Extension パス拡張子を加える