La función unchar() en p5.js se usa para convertir una string de un solo carácter en su representación entera correspondiente. Esta función es justo lo contrario de la función char().
Sintaxis:
unchar(value)
Parámetros: esta función acepta un valor de parámetro único que se convertirá en su representación entera correspondiente. Este valor será cualquier string de un solo carácter o una array de un solo carácter.
Valor devuelto: Devuelve la representación entera convertida de una string de un solo carácter.
El siguiente programa ilustra la función unchar() en p5.js:
Ejemplo 1: este ejemplo utiliza la función unchar() para convertir una string de un solo carácter en su representación entera correspondiente.
function setup() { // Creating Canvas size createCanvas(600, 230); } function draw() { // Set the background color background(220); // Initializing some values let Value1 = "A"; let Value2 = "a"; let Value3 = "B"; let Value4 = "C"; let Value5 = "z"; // Calling to unchar() function. let A = unchar(Value1); let B = unchar(Value2); let C = unchar(Value3); let D = unchar(Value4); let E = unchar(Value5); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting integer representation text("Integer representation of alphabet A is: " + A, 50, 30); text("Integer representation of alphabet a is: " + B, 50, 60); text("Integer representation of alphabet B is: " + C, 50, 90); text("Integer representation of alphabet C is: " + D, 50, 110); text("Integer representation of alphabet z is: " + E, 50, 140); }
Producción:
Ejemplo 2: este ejemplo utiliza la función unchar() para convertir una string de un solo carácter en su representación entera correspondiente.
function setup() { // Creating Canvas size createCanvas(600, 200); } function draw() { // Set the background color background(220); // Calling to unchar() function. let A = unchar("A"); let B = unchar("b"); let C = unchar("y"); let D = unchar("Y"); let E = unchar("P"); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting integer representation text("Integer representation of alphabet A is: " + A, 50, 30); text("Integer representation of alphabet b is: " + B, 50, 60); text("Integer representation of alphabet y is: " + C, 50, 90); text("Integer representation of alphabet Y is: " + D, 50, 110); text("Integer representation of alphabet P is: " + E, 50, 140); }
Producción:
Referencia: https://p5js.org/reference/#/p5/unchar
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