Overview
概要
A Scanner
object interprets and converts the characters of a String
into number and string values. You assign the scanner’s string when you create the scanner, and the scanner progresses through the characters of that string from beginning to end as you request items.
あるScanner
オブジェクトは、あるString
の文字を数および文字列値へと解釈および変換します。あなたはそのスキャナーのもつ文字列を、あなたがスキャナーを作成する時に割り当てます、そしてスキャナーはあなたが項目を要請するときその文字列の文字を始めから終わりまで通して進んでいきます。
Because of the nature of class clusters, a scanner object isn’t an actual instance of the Scanner
class, but is one of its private subclasses. Although a scanner object’s class is private, its interface is public, as declared by this abstract superclass, Scanner
. The objects you create using this class are referred to as scanner objects (and when no confusion will result, merely as scanners).
クラスクラスタの性質ゆえに、スキャナーオブジェクトはScanner
クラスの実際のインスタンスではありません、しかしそれのプライベートなサブクラスのうちの1つです。スキャナーオブジェクトのもつクラスがプライベートであるにもかかわらず、それのインターフェイスはパブリックです、この抽象サブクラス、Scanner
によって宣言されるように。あなたがこのクラスを使って作成するオブジェクトは、スキャナーオブジェクト(そして結果としてどんな混同もない時は、ただ単にスキャナー)として言及されます。
To set a Scanner
object to ignore a set of characters as it scans the string, use the charactersToBeSkipped
property. Characters in the skip set are skipped over before the target is scanned. The default set of characters to skip is the whitespace and newline character set.
あるScanner
オブジェクトを、それが文字列をスキャンするときある文字集合を無視するように設定するには、charactersToBeSkipped
プロパティを使ってください。省く集合の中の文字は、対象がスキャンされる前に省かれます。スキップする省略時の文字集合は、空白および改行文字集合です。
To retrieve the unscanned remainder of the string, use scanner.string.substring(from: scanner.scanLocation)
.
文字列の未スキャンの残りを回収するには、scanner.string.substring(from: scanner.scanLocation)
を使ってください。