El método flags() de la clase Pattern en Java se usa para devolver los indicadores de coincidencia del patrón. Los indicadores de coincidencia son una máscara de bits que puede incluir indicadores CASE_INSENSITIVE, MULTILINE, DOTALL, UNICODE_CASE, CANON_EQ, UNIX_LINES, LITERAL, UNICODE_CHARACTER_CLASS y COMMENTS.
Sintaxis:
public int flags()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve el indicador de coincidencia del patrón.
Los siguientes programas ilustran el método flags():
Programa 1:
// Java program to demonstrate // Pattern.flags() method import java.util.regex.*; public class GFG { public static void main(String[] args) { // create a REGEX String String REGEX = "(.*)(for)(.*)?"; // create the string // in which you want to search String actualString = "code of Machine"; // compile the regex to create pattern // using compile() method Pattern pattern = Pattern.compile(REGEX, Pattern.CASE_INSENSITIVE); // find the flag of pattern int flag = pattern.flags(); System.out.println("Pattern's match flag = " + flag); } }
Pattern's match flag = 2
Programa 2:
// Java program to demonstrate // Pattern.compile method import java.util.regex.*; public class GFG { public static void main(String[] args) { // create a REGEX String String REGEX = "(.*)(ee)(.*)?"; // create the string // in which you want to search String actualString = "geeks"; // compile the regex to create pattern // using compile() method Pattern pattern = Pattern.compile(REGEX, Pattern.MULTILINE); // find the flag of pattern int flag = pattern.flags(); System.out.println("Pattern's match flag = " + flag); } }
Pattern's match flag = 8
Referencias:
https://docs.oracle.com/javase/10/docs/api/java/util/regex/Pattern.html#flags()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA