p5.js | función char()

La función char() en p5.js se usa para convertir la string o el valor numérico dado en su representación de string de un solo carácter correspondiente. Si el parámetro de entrada es un valor de string, al principio se convierte en su equivalente entero internamente, después de eso, su string de un solo carácter se representa como salida y cuando se toma una array de strings o un número como parámetro, entonces da salida como un individuo strings de un solo carácter para cada elemento de la array.

Sintaxis:

char( value )

Parámetros: esta función acepta un valor de parámetro único que se convertirá en su representación de string de un solo carácter. Este valor puede ser un número, una string de números y una array de strings o números.

Valor devuelto: Devuelve la representación de string de un solo carácter convertida.

Los siguientes programas ilustran la función char() en p5.js:

Ejemplo 1: este ejemplo utiliza la función char() para convertir el valor de entrada en su carácter correspondiente.

function setup() { 
   
    // Creating Canvas size
    createCanvas(600, 230); 
} 
   
function draw() { 
       
    // Set the background color 
    background(220); 
     
    // Initializing some values
    let Value1 = 66;
    let Value2 = 67;
    let Value3 = "65";
    let Value4 = 62; 
    let Value5 = "62";
    let Value6 = 90;
     
    // Calling to char() function.
    let A = char(Value1);
    let B = char(Value2);
    let C = char(Value3);
    let D = char(Value4);
    let E = char(Value5);
    let F = char(Value6);
       
    // Set the size of text 
    textSize(16); 
       
    // Set the text color 
    fill(color('red')); 
     
    // Getting character representation
    text("Character representation of value 66 is: " + A, 50, 30);
    text("Character representation of value 67 is: " + B, 50, 60);
    text("Character representation of string '65' is: " + C, 50, 90);
    text("Character representation of value 62 is: " + D, 50, 110);
    text("Character representation of string '62' is: " + E, 50, 140);
    text("Character representation of value 90 is: " + F, 50, 170);
} 

Producción:

Ejemplo 2: Este ejemplo usa la función char() para convertir el valor de entrada en su carácter correspondiente.

function setup() { 
   
    // Creating Canvas size
    createCanvas(600, 140); 
} 
   
function draw() { 
       
    // Set the background color 
    background(220); 
     
    // Initializing some values
    let Value1 = [66, 67];
    let Value2 = ["66", "67"];
    let Value3 = ["66", "67", "90"]
     
    // Calling to char() function.
    let A = char(Value1);
    let B = char(Value2);
    let C = char(Value3);
       
    // Set the size of text 
    textSize(16); 
       
    // Set the text color 
    fill(color('red')); 
     
    // Getting character representation
    text("Character representation of array [66, 67] is: " + A, 50, 30);
    text("Character representation of array ['66', '67'] is: " + B, 50, 60);
    text("Character representation of array ['66', '67', '90'] is: " + C, 50, 90);
}     

Producción:

Referencia: https://p5js.org/reference/#/p5/char

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *