Thursday, October 16, 2025
HomeLanguagesJavascriptp5.js splitTokens() function

p5.js splitTokens() function

The splitTokens() function in p5.js is used to break the input string into pieces of data using a delimiter. This delimiter could be any string or symbol used between each piece of the input string. 
Syntax: 
 

splitTokens( string, delimiter )

Parameters: This function accepts two parameters as mentioned above and described below: 
 

  • String: This is the input string which are to be splitted.
  • Delimiter: This is any string or symbol used to separate the data of the input string.

Return Value: It returns the splitted data of the input string separated by commas (, ).
Below programs illustrate the splitTokens() function in p5.js:
Example 1: This example uses splitTokens() function to break the input string into pieces of data using a delimiter. 
 

javascript




function setup() { 
   
    // Create Canvas
    createCanvas(500, 60); 
function draw() { 
       
    // Set the background color 
    background(220); 
     
    // Initializing the Strings
    let String = 'neveropen/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);  


Output: 
 

Example 2: This example uses splitTokens() function to break the input string into pieces of data using a delimiter. 
 

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


Output: 
 

Note: The difference between splitTokens() and split() is that splitTokens() function splits using a range of characters while split() function uses a specific character or sequence. 
Reference: https://p5js.org/reference/#/p5/splitTokens
 

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS