func hasPrefix (String) -> Bool
The string with which to compare the receiver. レシーバと比較する文字列。
Availability 有効性
Technology
func commonPrefix(with str: String
,
options mask: NSString
.CompareOptions
= []) -> String
aString
The string with which to compare the receiver. レシーバと比較する文字列。
mask
Options for the comparison. The following search options may be specified by combining them with the C bitwise OR
operator: NSCase
, NSLiteral
. See String Programming Guide for details on these options.
比較のためのオプション。以下の検索オプションは、それらをCビット単位OR
演算子で結合することによって指定されるかもしれません:NSCase
、NSLiteral
。String Programming Guideをこれらのオプションの詳細として見てください。
A string containing characters the receiver and a
have in common, starting from the beginning of each up to the first characters that aren’t equivalent.
レシーバとa
が共通して持つ文字を、それぞれの始まりから開始して等しくない最初の文字に至るまで含んでいる文字列。
The returned string is based on the characters of the receiver. For example, if the receiver is “Ma¨dchen” and a
is “Mädchenschule”, the string returned is “Ma¨dchen”, not “Mädchen”.
返される文字列は、レシーバの文字に基づきます。例えば、レシーバが “Ma¨dchen” であるそしてa
が “Mädchenschule” であるならば、返される文字列は “Ma¨dchen”です、“Mädchen” ではなく。
func hasPrefix (String) -> Bool