El método getLength() de la clase java.text.Bidi se utiliza para obtener la longitud del texto en esta instancia de Bidi.
Sintaxis:
public int getLength()
Parámetro : este método no acepta nada como parámetro.
Valor de retorno: este método proporciona la longitud del texto bidi como un número entero.
A continuación se muestran los ejemplos para ilustrar el método getLength() :
Ejemplo 1:
// Java program to demonstrate // getLength() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { // creating and initializing Bidi Bidi bidi = new Bidi("Geeks For Geeks", 0); // getting the length of line of text // using getLength() method int length = bidi.getLength(); // display the result System.out.println("length of line : " + length); } }
Producción:
length of line : 15
Ejemplo 2:
// Java program to demonstrate // getLength() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { // creating and initializing Bidi Bidi bidi = new Bidi("Tajmahal", 0); // getting the length of line of text // using getLength() method int length = bidi.getLength(); // display the result System.out.println("length of line : " + length); } }
Producción:
length of line : 8
Referencia: https://docs.oracle.com/javase/9/docs/api/java/text/Bidi.html#getLength–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA