La función trim() en p5.js se usa para eliminar los espacios en blanco y la tabulación del principio y el final de una string de entrada . Esta función también se utiliza para eliminar el retorno de carro y el carácter «nbsp» de Unicode .
Sintaxis:
trim(Strings)
o
trim(Array_of_Strings)
Parámetros: esta función acepta un parámetro String o un array_of_strings que se van a recortar.
Valor de Retorno: Devuelve los Strings recortados.
Los siguientes programas ilustran la función trim() en p5.js.
Ejemplo-1: este ejemplo utiliza la función trim() para eliminar los espacios en blanco del principio y el final de una string.
function setup() { // Creating Canvas size createCanvas(450, 120); } function draw() { // Set the background color background(220); // Initializing the Strings and Array of strings let String = " Geeks "; let Array1 = [" 1 ", " 2 ", " 3 "]; let Array2 = [" a ", " A ", " b ", " B "]; // Calling to trim() function. let A = trim(String); let B = trim(Array1); let C = trim(Array2); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting trimed strings text("Trimmed string is: " + A, 50, 30); text("Trimmed strings are: " + B, 50, 60); text("Trimmed strings are: " + C, 50, 90); }
Producción:
Ejemplo-2: Este ejemplo usa la función trim() para eliminar la pestaña desde el principio y el final de una string.
function setup() { // Creating Canvas size createCanvas(450, 120); } function draw() { // Set the background color background(220); // Initializing the Strings and Array of strings let String = " GeeksforGeeks "; let Array1 = [" 5 ", " 6 ", " 7 "]; let Array2 = [" Delhi ", " Mumbai ", " Kolkata ", " Patna "]; // Calling to trim() function. let A = trim(String); let B = trim(Array1); let C = trim(Array2); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting trimed strings text("Trimmed string is: " + A, 50, 30); text("Trimmed strings are: " + B, 50, 60); text("Trimmed strings are: " + C, 50, 90); }
Producción:
Referencia: https://p5js.org/reference/#/p5/trim
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA