当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


p5.js splitTokens()用法及代码示例


p5.j​​s中的splitTokens()函数用于使用定界符将输入字符串分成数据段。该分隔符可以是在输入字符串的每一段之间使用的任何字符串或符号。

用法:

split( string, delimiter )

参数:该函数接受上述和以下描述的两个参数:


  • String:这是要分割的输入字符串。
  • Delimiter:这是用于分隔输入字符串数据的任何字符串或符号。

返回值:它返回以逗号(,)分隔的输入字符串的分割数据。

以下程序说明了p5.js中的splitTokens()函数:

示例1:本示例使用splitTokens()函数使用定界符将输入字符串分成数据段。

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);   
} 

输出:

示例2:本示例使用splitTokens()函数使用定界符将输入字符串分成数据段。

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



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 p5.js | splitTokens() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。