Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mohamedkhallouq
GitHub Repository: mohamedkhallouq/content
Path: blob/main/files/en-us/web/exslt/str/tokenize/index.md
6552 views
---
title: str:tokenize() slug: Web/EXSLT/str/tokenize
---

{{XSLTRef}}{{QuickLinksWithSubpages("/en-US/docs/Web/EXSLT")}}

str:tokenize() splits a string using a set of characters as delimiters that determine where the splits should occur, returning a node-set containing the resulting strings.

Syntax

str:tokenize(string, delimiters)

Parameters

  • string

    • : The string to tokenize.

  • delimiters

    • : Each character in this string is used as a word separator while tokenizing.

Returns

A node-set of token elements, each containing one token from the string.

Example

str:tokenize('2007-09-14-03T11:40:23', '-T:')

Returns a node set like this:

<token>2007</token> <token>09</token> <token>14</token> <token>11</token> <token>40</token> <token>23</token>

Specifications

EXSLT - STR:TOKENIZE

See also