El método toPattern() de la clase java.text.MessageFormat se utiliza para obtener una representación de string del patrón actual de este objeto de formato de mensaje.
Sintaxis:
public String toPattern()
Parámetro : este método no toma ningún argumento como parámetro.
Valor devuelto: este método devuelve una representación de string del patrón actual de este objeto de formato de mensaje.
A continuación se muestran los ejemplos para ilustrar el método toPattern() :
Ejemplo 1:
Java
// Java program to demonstrate // toPattern() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { // creating and initializing MessageFormat MessageFormat mf = new MessageFormat("{0, number, #}, {2, date, #.#}, {4, time}"); // getting the pattern // of this MessageFormat Object // using toPattern() method String patt = mf.toPattern(); // display the result System.out.println("current pattern of MessageFormat Object : " + patt); } }
Producción:
current pattern of MessageFormat Object : {0, number, #}, {2, date, #.#}, {4, time}
Ejemplo 2:
Java
// Java program to demonstrate // toPattern() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { // creating and initializing MessageFormat MessageFormat mf = new MessageFormat("{0, number, #}, {4, time}"); // getting the pattern // of this MessageFormat Object // using toPattern() method String patt = mf.toPattern(); // display the result System.out.println("current pattern of MessageFormat Object : " + patt); } }
Producción:
current pattern of MessageFormat Object : {0, number, #}, {4, time}
Referencia: https://docs.oracle.com/javase/9/docs/api/java/text/MessageFormat.html#toPattern–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA