p5.js中的char()函数用于将给定的字符串或数字值转换为其相应的单字符字符串表示形式。如果输入参数是字符串值,则首先将其内部转换为等效的整数,然后将其单字符字符串表示为输出,当将字符串或数字数组作为参数时,它将输出作为单个数组中每个元素的单字符字符串。
用法:
char( value )
参数:该函数接受单个参数值,该值将转换为其单字符字符串表示形式。该值可以是数字,数字字符串和字符串或数字数组。
返回值:它返回转换后的单字符字符串表示形式。
以下程序说明了p5.js中的char()函数:
示例1:本示例使用char()函数将输入值转换为相应的字符。
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);
}
输出:
示例2:本示例使用char()函数将输入值转换为相应的字符。
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);
}
输出:
参考: https://p5js.org/reference/#/p5/char
相关用法
- HTML <col> char属性用法及代码示例
- HTML <td> char属性用法及代码示例
- HTML tbody char用法及代码示例
- HTML <colgroup> char属性用法及代码示例
- HTML <thead> char属性用法及代码示例
- CSS hsl()用法及代码示例
- PHP Ds\Set contains()用法及代码示例
- PHP min( )用法及代码示例
- PHP pi( )用法及代码示例
- p5.js value()用法及代码示例
- d3.js d3.sum()用法及代码示例
- p5.js arc()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 p5.js | char() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。