Instance Method
インスタンスメソッド
addingPercentEscapes(using:)
Returns a representation of the receiver using a given encoding to determine the percent escapes necessary to convert the receiver into a legal URL string.
レシーバのある表現を返します、レシーバを合法なURL文字列へ変換するのに必要なパーセントエスケープを決定するのに与えられた符号化を使います。
Declaration
宣言
func addingPercentEscapes(using enc: UInt
) -> String
?
Parameters
パラメータ
encoding
The encoding to use for the returned string. If you are uncertain of the correct encoding you should use NSUTF8StringEncoding
.
返される文字列に対して使われる符号化。あなたが正しい符号化に関心がないならばあなたはNSUTF8StringEncoding
を使うべきです。
Return Value
戻り値
A representation of the receiver using encoding
to determine the percent escapes necessary to convert the receiver into a legal URL string. Returns nil
if encoding
cannot encode a particular character.
レシーバのある表現、レシーバを合法なURL文字列へと変換するのに必要なパーセントエスケープを決定するのにencoding
を使っています。nil
を返します、もしencoding
が特定の文字を符号化できないならば。
Discussion
議論
It may be difficult to use this function to "clean up" unescaped or partially escaped URL strings where sequences are unpredictable. See CFURLCreateStringByAddingPercentEscapes(_:_:_:_:_:)
for more information.
この関数を使って、エスケープされないまたは部分的にエスケープされるURL文字列で、並びが予測できないものを "掃除" するのは、難しいかもしれません。CFURLCreateStringByAddingPercentEscapes(_:_:_:_:_:)
をさらなる情報のために見てください。
See Also
参照
Deprecated
非推奨
init?(cString: UnsafePointer<CChar>)
Initializes the receiver, a newly allocated NSString
object, by converting the data in a given C-string from the default C-string encoding into the Unicode character encoding.
レシーバ、ある新しくアロケートされたNSString
オブジェクトを、与えられたC文字列の中のデータを省略時のC文字列符号化からユニコード文字符号化へと変換することによって初期化します。
Deprecated
非推奨
init?(cString: UnsafePointer<CChar>, length: Int)
Initializes the receiver, a newly allocated NSString
object, by converting the data in a given C-string from the default C-string encoding into the Unicode character encoding.
レシーバ、ある新しくアロケートされたNSString
オブジェクトを、与えられたC文字列の中のデータを省略時のC文字列符号化からユニコード文字符号化へと変換することによって初期化します。
Deprecated
非推奨
init?(contentsOfFile: String)
Initializes the receiver, a newly allocated NSString
object, by reading data from the file named by path
.
レシーバ、ある新しく作成されたNSString
オブジェクトを、path
によって指名されたファイルからデータを読み出すことによって初期化します。
Deprecated
非推奨
init?(contentsOf: URL)
Initializes the receiver, a newly allocated NSString
object, by reading data from the location named by a given URL.
レシーバ、ある新しくアロケートされたNSString
オブジェクトを、ある与えられたURLによって指名される位置からデータを読み出すことによって初期化します。
Deprecated
非推奨
func lossyCString() -> UnsafePointer<CChar>?
Returns a representation of the receiver as a C string in the default C-string encoding, possibly losing information in converting to that encoding.
C文字列として、省略時のC文字列符号化において、レシーバの表現を返します、ことによるとその符号化への変換において情報を損失します。
Deprecated
非推奨
func cStringLength() -> Int
Returns the length in char-sized units of the receiver’s C-string representation in the default C-string encoding.
省略時のC文字列符号化において 、レシーバのもつC文字列表現のcharサイズ単位での長さを返します。
Deprecated
非推奨
func replacingPercentEscapes(using: UInt) -> String?
Returns a new string made by replacing in the receiver all percent escapes with the matching characters as determined by a given encoding.
レシーバにおいて全てのパーセントエスケープを、与えられた符号化によって判定されるときに、マッチする文字で置き換えることによって作られる新しい文字列を返します。
Deprecated
非推奨
Related Documentation
関連文書
var removingPercentEncoding: String?
Returns a new string made from the receiver by replacing all percent encoded sequences with the matching UTF-8 characters.
全てのパーセント符号化の並びを、合致するUTF-8文字と置き換えることによって、レシーバから作られる新しい文字列を返します。