La función join() en p5.js se usa para unir la array de strings de entrada en una sola string usando un separador. Este separador puede ser cualquier carácter que obtenga su posición entre dos strings de la array de entrada.
Sintaxis:
join(Array, Separator)
Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- Array: Esta es la array de strings que se van a unir.
- Separador: este es cualquier carácter que se colocará entre dos strings de la array de entrada.
Valor devuelto: Devuelve las strings unidas.
Los siguientes programas ilustran la función join() en p5.js:
Ejemplo 1: este ejemplo usa la función join() para unir los elementos de la array de entrada.
function setup() { // Creating Canvas size createCanvas(450, 120); } function draw() { // Set the background color background(220); // Initializing the Array of strings let Array1 = ["Geeks", "for", "Geeks"]; let Array2 = ["1", "2", "3"]; let Array3 = ["a", "A", "b", "B"]; // Initializing the separator character let Separator1 = "/"; let Separator2 = "&"; let Separator3 = "*"; // Calling to join() function. let A = join(Array1, Separator1); let B = join(Array2, Separator2); let C = join(Array3, Separator3); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting joined strings text("Joined string is: " + A, 50, 30); text("Joined string is: " + B, 50, 60); text("Joined string is: " + C, 50, 90); }
Producción:
Ejemplo 2: este ejemplo utiliza la función join() para unir los elementos de la array de entrada.
function setup() { // Creating Canvas size createCanvas(450, 120); } function draw() { // Set the background color background(220); // Calling join() function over the parameter // Array of strings and separator let A = join(["kolkata", "Mumbai", "Delhi"], " "); let B = join(["Geeks", "for", "Geeks"], ""); let C = join(["Ram", "Shyam", "Geeks", "Rahim"], "+"); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting joined strings text("Joined string is: " + A, 50, 30); text("Joined string is: " + B, 50, 60); text("Joined string is: " + C, 50, 90); }
Producción:
Referencia: https://p5js.org/reference/#/p5/join
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