func components(separatedBy : String) -> [String]
func components(separatedBy : CharacterSet) -> [String]
func trimmingCharacters (in: CharacterSet) -> String
func substring(from: Int) -> String
func substring(to: Int) -> String
Availability 有効性
Technology
aRange
A range. The range must not exceed the bounds of the receiver. 範囲。範囲は、レシーバの境界を越えてはいけません。
Raises an range
if (a
- 1) or (a
+ a
- 1) lies beyond the end of the receiver.
range
を引き起こします、もし(a
- 1)または(a
+ a
- 1)がレシーバの終わりを越えて横たわるならば。
A string object containing the characters of the receiver that lie within a
.
a
内に横たわる、レシーバの文字を含んでいる文字列オブジェクト。
This method detects all invalid ranges (including those with negative lengths). For applications linked against macOS 10.6 and later, this error causes an exception; for applications linked against earlier releases, this error causes a warning, which is displayed just once per application execution. このメソッドは、すべての無効な範囲を検知します(負の長さでのそれらを含めて)。macOS 10.6以降に対して結び付けられるアプリケーションに対して、このエラーは例外をもたらします;以前のリリースに関連するアプリケーションに対して、このエラーは警告をもたらします、それはアプリケーション例外ごとに一度だけ表示されます。
func components(separatedBy : String) -> [String]
func components(separatedBy : CharacterSet) -> [String]
func trimmingCharacters (in: CharacterSet) -> String
func substring(from: Int) -> String
func substring(to: Int) -> String