JavaScript: String Tokenization And Substring
Join the DZone community and get the full member experience.
Join For Free// Tokenize a comma-separated string
// then recreate the comma-separated list
var currentTagTokens = currentTags.split( "," );
var existingTags = "";
for ( var i = 0; i
Strings
JavaScript
Data Types
Opinions expressed by DZone contributors are their own.
Comments