The string to find. 見つける文字列。
Generic Instance Method
総称体インスタンスメソッド
range(of:
range(of:options:locale:)
Returns the range of a substring in the attributed string, if it exists.
属性付き文字列の中のある下位文字列の範囲を、もしそれが存在するならば返します。
Availability 有効性
- iOS 15.0+
- iPadOS 15.0+
- macOS 12.0+
- Mac Catalyst 15.0+
- tvOS 15.0+
- watchOS 8.0+
- Xcode 13.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
func range<T>(of stringToFind: T, options: String
.CompareOptions
= [], locale: Locale
? = nil) -> Range
<Index
>? where T : StringProtocol
Parameters パラメータ
stringToFind
options オプション
Options that affect the search behavior, such as case-insensivity, search direction, and regular expression matching. 検索挙動に影響を及ぼすオプションそれら、たとえば、ケース無反応、検索方向、そして正規表現マッチング。
locale
The locale to use when searching, or
nil
to use the current locale. The default isnil
. このロケールを検索する時に使います、またはnil
で現在のロケールを使います。省略時にはnil
です。
Return Value 戻り値
The range where string
exists in the attributed string, or nil
if it isn’t present.
string
がこの属性付き文字列において存在するところの範囲、またはnil
、もしそれが存在していないならば。