The reset() method of java.util.Scanner class resets this scanner. On resetting a scanner, it discards all of its explicit state information which may have been changed by invocations of useDelimiter(java.util.regex.Pattern), useLocale(java.util.Locale), or useRadix(int).
Syntax:
public Scanner reset()
Return Value: This function returns this scanner which has been reset.
Below programs illustrate the above function:
Program 1:
import java.util.*;
public class GFG1 {
public static void main(String[] argv)
throws Exception
{
String s = "Geeksforgeeks has Scanner Class Methods" ;
Scanner scanner = new Scanner(s);
System.out.println( "Scanner String:\n"
+ scanner.nextLine());
scanner.useLocale(Locale.US);
scanner.useRadix( 30 );
System.out.println( "\nBefore Reset:\n" );
System.out.println( "Radix: " + scanner.radix());
System.out.println( "Locale: " + scanner.locale());
scanner.reset();
System.out.println( "\nAfter Reset:\n" );
System.out.println( "Radix: " + scanner.radix());
System.out.println( "Locale: " + scanner.locale());
scanner.close();
}
}
|
Output:
Scanner String:
Geeksforgeeks has Scanner Class Methods
Before Reset:
Radix: 30
Locale: en_US
After Reset:
Radix: 10
Locale: en_US
Program 2:
import java.util.*;
public class GFG1 {
public static void main(String[] argv)
throws Exception
{
String s = "Geeksforgeeks" ;
Scanner scanner = new Scanner(s);
System.out.println( "Scanner String:\n"
+ scanner.nextLine());
scanner.useLocale(Locale.US);
scanner.useRadix( 12 );
System.out.println( "\nBefore Reset:\n" );
System.out.println( "Radix: " + scanner.radix());
System.out.println( "Locale: " + scanner.locale());
scanner.reset();
System.out.println( "\nAfter Reset:\n" );
System.out.println( "Radix: " + scanner.radix());
System.out.println( "Locale: " + scanner.locale());
scanner.close();
}
}
|
Output:
Scanner String:
Geeksforgeeks
Before Reset:
Radix: 12
Locale: en_US
After Reset:
Radix: 10
Locale: en_US
Reference: https://docs.oracle.com/javase/7/docs/api/java/util/Scanner.html#reset()