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

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

str:split() splits a string using a pattern string to determine where the splits should occur, returning a node-set containing the resulting strings.

Syntax

str:split(string, pattern)

Parameters

  • string

    • : The string to split.

  • pattern

    • : The pattern indicating where to split the string.

Returns

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

Example

str:split('book, phone, computer, chair', ', ')

Returns a node set like:

<token>book</token> <token>phone</token> <token>computer</token> <token>chair</token>

Specifications

EXSLT - STR:SPLIT

See also