Type Method
型メソッド
string(withContentsOf:)
Returns a string created by reading data from the file named by a given URL.
与えられたURLによって指名されるファイルからデータを読み出すことによって作成される文字列を返します。
Declaration
宣言
class func string(withContentsOf url: URL
) -> Any?
Discussion
議論
If the contents begin with a byte-order mark (U+FEFF
or U+FFFE
), interprets the contents as UTF-16 code units. If the contents begin with a UTF-8 byte-order mark (EFBBBF), interprets the contents as UTF-8. Otherwise interprets the contents as data in the default C string encoding. Since the default C string encoding will vary with the user’s configuration, do not depend on this method unless you are using Unicode or UTF-8 or you can verify the default C string encoding. Returns nil
if the location can’t be opened.
内容がバイトオーダーマーク(U+FEFF
またはU+FFFE
)で始まるならば、内容をUTFー16コード単位として解釈します。内容がUTF-8バイトオーダーマーク(EFBBBF)で始まるならば、内容をUTF-8として解釈します。そうでなければ内容をデータとして省略時のC文字列符号化で解釈します。省略時のC文字列符号化はユーザの構成設定によって変動することから、このメソッドに依存しないでください、あなたがユニコードまたはUTFー8を使っているまたはあなたが省略時のC文字列符号化を検証できるのでない限り。nil
を返します、もしファイルが開かれることができないならば。
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 addingPercentEscapes(using: UInt) -> String?
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文字列へ変換するのに必要なパーセントエスケープを決定するのに与えられた符号化を使います。
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
関連文書
+ stringWithContentsOfURL:usedEncoding:error:
Returns a string created by reading data from a given URL and returns by reference the encoding used to interpret the data.
与えられたURLからデータを読み出すことによって作成される文字列を返します、そしてデータを解釈するのに使われた符号化を参照渡しで返します。