p5.js | splitTokens()函数
p5.js 中的splitTokens()函数用于使用分隔符将输入字符串分解为数据片段。此分隔符可以是输入字符串的每段之间使用的任何字符串或符号。
句法:
splitTokens( string, delimiter )
参数:该函数接受上面提到的两个参数,如下所述:
- 字符串:这是要拆分的输入字符串。
- 分隔符:这是用于分隔输入字符串数据的任何字符串或符号。
返回值:返回用逗号(,)分隔的输入字符串的分割数据。
下面的程序说明了 p5.js 中的 splitTokens()函数:
示例 1:此示例使用 splitTokens()函数使用分隔符将输入字符串分解为数据片段。
javascript
function setup() {
// Create Canvas
createCanvas(500, 60);
}
function draw() {
// Set the background color
background(220);
// Initializing the Strings
let String = 'GeeksforGeeks/Geeks/Geek/gfg';
// Calling to splitTokens() function
let A = splitTokens(String, '/');
// Set the size of text
textSize(16);
// Set the text color
fill(color('red'));
// Getting splitted string
text("Splitted string is: " + A, 50, 30);
}
javascript
function setup() {
// Create Canvas
createCanvas(450, 60);
}
function draw() {
// Set the background color
background(220);
// Initializing the Strings
let String = '0&11&222&3333';
// Calling to splitTokens() function.
let A = splitTokens(String, '&');
// Set the size of text
textSize(16);
// Set the text color
fill(color('red'));
// Getting splitted string
text("Splitted string is: " + A, 50, 30);
}
输出:
示例 2:此示例使用 splitTokens()函数使用分隔符将输入字符串分解为数据片段。
javascript
function setup() {
// Create Canvas
createCanvas(450, 60);
}
function draw() {
// Set the background color
background(220);
// Initializing the Strings
let String = '0&11&222&3333';
// Calling to splitTokens() function.
let A = splitTokens(String, '&');
// Set the size of text
textSize(16);
// Set the text color
fill(color('red'));
// Getting splitted string
text("Splitted string is: " + A, 50, 30);
}
输出:
注意: splitTokens()和split()之间的区别在于 splitTokens ()函数使用一系列字符进行拆分,而split()函数使用特定字符或序列。
参考: https://p5js.org/reference/#/p5/splitTokens