Escáner método findInLine() en Java con ejemplos

findInLine(Patrón patrón)

El método findInLine(Pattern pattern) de la clase java.util.Scanner intenta encontrar la siguiente ocurrencia del patrón especificado ignorando los delimitadores. Si el patrón se encuentra antes del siguiente separador de línea, el escáner avanza más allá de la entrada que coincidió y devuelve la string que coincidió con el patrón. Si no se detecta dicho patrón en la entrada hasta el siguiente separador de línea, se devuelve nulo y la posición del escáner no cambia.

Sintaxis:

public String findInLine(Pattern pattern)

Parámetros: la función acepta un parámetro obligatorio Patrón patrón que es el patrón que se escanea.

Valor devuelto: la función devuelve el patrón de delimitación del escáner.

Excepciones: la función lanza una IllegalStateException si este analizador está cerrado.

Los siguientes programas ilustran la función anterior:

Programa 1:

// Java program to illustrate the
// findInLine() method of Scanner class in Java
  
import java.util.*;
import java.util.regex.Pattern;
  
public class GFG1 {
    public static void main(String[] argv)
        throws Exception
    {
  
        try {
  
            // Get the string to be searched
            String s = "Geeksforgeeks has Scanner Class Methods";
  
            // Print the string
            System.out.println("Target String:\n" + s);
  
            // create a new scanner
            // with the specified String Object
            Scanner scanner = new Scanner(s);
  
            // finds a pattern of any 5 letter plus "for"
            System.out.println("\nAny 5 letter plus for : "
                               + scanner.findInLine(
                                     Pattern.compile(".....for")));
  
            // close the scanner
            scanner.close();
        }
        catch (IllegalStateException e) {
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción:

Target String:
Geeksforgeeks has Scanner Class Methods

Any 5 letter plus for : Geeksfor

Programa 2: Para demostrar IllegalStateException

// Java program to illustrate the
// findInLine() method of Scanner class in Java
  
import java.util.*;
import java.util.regex.Pattern;
  
public class GFG1 {
    public static void main(String[] argv)
        throws Exception
    {
  
        try {
  
            // Get the string to be searched
            String s = "Geeksforgeeks has Scanner Class Methods";
  
            // Print the string
            System.out.println("Target String:\n" + s);
  
            // create a new scanner
            // with the specified String Object
            Scanner scanner = new Scanner(s);
  
            // close the scanner
            scanner.close();
  
            // finds a pattern of any 5 letter plus "for"
            System.out.println("\nAny 5 letter plus for : "
                               + scanner.findInLine(
                                     Pattern.compile(".....for")));
  
            // print the next line of the string
            System.out.println("" + scanner.nextLine());
        }
        catch (IllegalStateException e) {
            System.out.println("Exception thrown: " + e);
        }
    }
}
Producción:

Target String:
Geeksforgeeks has Scanner Class Methods
Exception thrown:
 java.lang.IllegalStateException:
 Scanner closed

findInLine (patrón de string)

El método findInLine(String pattern) de la clase java.util.Scanner intenta encontrar la siguiente aparición de un patrón construido a partir del patrón de string especificado, ignorando los delimitadores.

Sintaxis:

public String findInLine(String pattern)

Parámetros: la función acepta un patrón de string de parámetros obligatorio que se escanea.

Valor devuelto: la función devuelve el patrón de delimitación del escáner.

Excepciones: la función lanza una IllegalStateException si este analizador está cerrado.

Los siguientes programas ilustran la función anterior:

Programa 1:

// Java program to illustrate the
// findInLine() method of Scanner class in Java
  
import java.util.*;
import java.util.regex.Pattern;
  
public class GFG1 {
    public static void main(String[] argv)
        throws Exception
    {
  
        try {
  
            // Get the string to be searched
            String s = "Geeksforgeeks has Scanner Class Methods";
  
            // Print the string
            System.out.println("Target String:\n" + s);
  
            // create a new scanner
            // with the specified String Object
            Scanner scanner = new Scanner(s);
  
            // finds a pattern of any 5 letter plus "for"
            System.out.println("\nAny 5 letter plus for : "
                               + scanner.findInLine(
                                     Pattern.compile(".....for")));
  
            // close the scanner
            scanner.close();
        }
  
        catch (IllegalStateException e) {
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción:

Target String:
Geeksforgeeks has Scanner Class Methods

Any 5 letter plus for : Geeksfor

Programa 2: Para demostrar IllegalStateException

// Java program to illustrate the
// findInLine() method of Scanner class in Java
  
import java.util.*;
import java.util.regex.Pattern;
  
public class GFG1 {
    public static void main(String[] argv)
        throws Exception
    {
  
        try {
  
            // Get the string to be searched
            String s = "Geeksforgeeks has Scanner Class Methods";
  
            // Print the string
            System.out.println("Target String:\n" + s);
  
            // create a new scanner
            // with the specified String Object
            Scanner scanner = new Scanner(s);
  
            // close the scanner
            scanner.close();
  
            // finds a pattern of any 5 letter plus "for"
            System.out.println("\nAny 5 letter plus for : "
                               + scanner.findInLine(
                                     Pattern.compile(".....for")));
        }
  
        catch (IllegalStateException e) {
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción:

Target String:
Geeksforgeeks has Scanner Class Methods
Exception thrown :
 java.lang.IllegalStateException:
 Scanner closed

Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/Scanner.html#findInLine(java.util.regex.Pattern)

Publicación traducida automáticamente

Artículo escrito por gopaldave y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *