Java.Util.Scanner.Skip Method
Tries to use the specified string to construct a pattern and then uses the constructed pattern to match input starting from the current position.

Syntax

[Android.Runtime.Register("skip", "(Ljava/lang/String;)Ljava/util/Scanner;", "")]
public Scanner Skip (string pattern)

Parameters

pattern
the string used to construct a pattern which in turn is used to match input.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Lang.IllegalStateExceptionif the Scanner is closed.

Remarks

Tries to use the specified string to construct a pattern and then uses the constructed pattern to match input starting from the current position. The delimiter will be ignored. This call is the same as invoke skip(Pattern.compile(pattern)).

[Android Documentation]

Requirements

Namespace: Java.Util
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1