Class
NSTextCheckingResult
An occurrence of textual content found during the analysis of a block of text, such as when matching a regular expression.
あるテキストの塊の分析の間に、例えばある正規表現のマッチングの時に、見つけられたテキスト内容の存在。
Declaration
宣言
@interface NSTextCheckingResult : NSObject
Overview
概要
On both iOS and macOS, instances of NSTextCheckingResult
are returned by the NSRegularExpression
class and the NSDataDetector
class to indicate the discovery of content. In those cases, what is found may be a match for a regular expression or a date, address, phone number, and so on. In macOS, instances of NSTextCheckingResult
are returned by the NSSpellChecker
object to describe the results of spelling, grammar, or text-substitution actions.
iOSとmacOSの両方で、NSTextCheckingResult
のインスタンスはNSRegularExpression
クラスとNSDataDetector
クラスによって返されて、発見された内容を指し示します。それらの場合において、見つけられたものは正規表現またはある日付、住所、電話番号、等々に対して一致するものでしょう。macOSにおいて、NSTextCheckingResult
のインスタンスはNSSpellChecker
オブジェクトによって返されて、綴り、文法、またはテキスト置換動作の結果を記述します。
Topics
話題
Text Checking Type Range and Type
テキストチェック型の範囲と型
range
Returns the range of the result that the receiver represents.
レシーバが表す結果の範囲を返します
resultType
Returns the text checking result type that the receiver represents.
レシーバが表しているテキスト検査結果の型を返します。
- rangeAtIndex:
Returns the result type that the range represents.
その範囲が表す結果型を返します。
Text Checking Results for Text Replacement
テキスト置き換えのテキスト検査結果
replacementString
A replacement string from one of a number of replacement checking results.
いくつかの置換検査結果の1つからの置換文字列。
Text Checking Results for Regular Expressions
正規表現に対するテキスト検査結果
Text Checking Result Components
テキスト検査結果構成要素
components
A dictionary containing the components of a type checking result.
型検査結果の構成要素を含んでいる辞書。
Text Checking Results for URLs
URLに対するテキスト検査結果
URL
The URL of a type checking result.
ある型検査結果のURL。
Text Checking Results for Addresses
住所に対するテキスト検査結果
Text Checking Results for Transit Information
輸送機関情報に対するテキスト検査結果
Text Checking Results for Phone Numbers
電話番号に対するテキスト検査結果
phoneNumber
The phone number of a type checking result.
ある型検査結果の電話番号。
Text Checking Results for Dates and Times
日付と時刻に対するテキスト検査結果
date
The date component of a type checking result.
あるテキスト検査結果の日付構成要素。
duration
The duration component of a type checking result.
あるテキスト検査結果の期間構成要素。
timeZone
The time zone component of a type checking result.
あるテキスト検査結果のタイムゾーン構成要素。
Text Checking Results for Typography
タイポグラフィに対するテキスト検査結果
Text Checking Results for Spelling
綴りに対するテキスト検査結果
Text Checking Results for Orthography
正書法に対するテキスト検査結果
orthography
The detected orthography of a type checking result.
あるテキスト検査結果の検出された正書法。
Text Checking Results for Grammar
文法に対するテキスト検査結果
grammarDetails
The details of a located grammatical type checking result.
ある突き止められた文法的型検査結果の詳細。
Adjusting the Ranges of a Text Checking Result
あるテキスト検査結果の範囲それらを調節する
Constants
定数
NSTextCheckingTypes
Defines the types of checking that are available. These values can be combined using the C-bitwise OR operator. The system supports its own internal types, and the user can extend those types by subclassing NSTextCheckingResult
and adding their own custom types.
利用可能な検査の型を定義します。これらの値は、Cビット単位OR演算子を使って結合可能です。システムはそれ独自の内部型をサポートします、そしてユーザはそれらの型を拡張することがNSTextCheckingResult
のサブクラスを作成して彼ら独自のあつらえの型を加えることで可能です。
Instance Properties
インスタンスプロパティ
Instance Methods
インスタンス メソッド
See Also
参照
Pattern Matching
パターンマッチング
NSScanner
A string parser that scans for substrings or characters in a character set, and for numeric values from decimal, hexadecimal, and floating-point representations.
ある文字列パーサー、それはある文字集合での下位文字列または文字を求めて、そして10進、16進、および浮動小数点表現からの数値を求めて、走査します。
NSRegularExpression
An immutable representation of a compiled regular expression that you apply to Unicode strings.
可変でない表現のコンパイル済み正規表現で、それをあなたはユニコード文字列に適用します。
NSDataDetector
A specialized regular expression object that matches natural language text for predefined data patterns.
ある特殊化された正規表現オブジェクトで、自然言語テキストをあらかじめ定義されたデータパターンと照合します。
NSNotFound
A value indicating that a requested item couldn’t be found or doesn’t exist.
要求された項目が見つけられなかったまたは存在しないことを指し示す値。