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

contains(_:)

Returns a Boolean value indicating whether the string contains a given string by performing a case-sensitive, locale-unaware search. あるブール値を返します、文字列がある与えられた文字列を含んでいるかどうか、ケース考慮する、ロケールを意識しない検索を実行することによって指し示します。

Declaration 宣言

func contains(_ str: String) -> Bool

Parameters パラメータ

str

The string to search for. This value must not be nil. この文字列がないか捜します。この値は、nilではいけません。

Return Value 戻り値

true if the receiver contains str, otherwise false. true、もしレシーバがstrを含むならば、そうでなければfalse

Discussion 議論

Calling this method is equivalent to calling range(of:options:) with no options. このメソッドを呼び出すことは、range(of:options:)をオプションなしで呼び出すことと等しいです。

See Also 参照

Finding Characters and Substrings 文字と下位文字列を発見する