ISML Function - split()

Name

split()

Short Description

splits the value of a complex string variable into individual elements

Table of Contents

Product Version

6.5

Product To Version

 

StatusNew Labels

Introduction

The function split() is used to break down the value of a complex string variable into individual elements which can then be treated individually.

This allows you to iterate through complex string values, e.g., in a loop. Elements are broken down according to a specified pattern which serves as separator.

Syntax

split(<string variable>, <pattern>)

Note

<pattern> may be a regular expression to find multiple separators (e.g., comma and semicolon) and complex separators (e.g., ---) at once.

To use a control character that is reserved in RegExp, e.g., the pipe symbol (|), as a separator, you have to double escape the character. For example:

#split(fo|o, '\\|')#

 

Example

In the following example, the string value of variable foo is broken down into individual elements. Elements are separated by a comma. Each element (except the last) is then printed with a following <br> tag:

<isset scope="request" name="lines" value="#split(foo, ',')#">
<isloop iterator="lines" alias="line">
  <isprint value="#line#">
  <isif condition="#hasNext(line)#"><br></isif>
</isloop>

Reference - ISML Functions

Disclaimer

The information provided in the Knowledge Base may not be applicable to all systems and situations. Intershop Communications will not be liable to any party for any direct or indirect damages resulting from the use of the Customer Support section of the Intershop Corporate Web site, including, without limitation, any lost profits, business interruption, loss of programs or other data on your information handling system.

The Intershop Customer Support website uses only technically necessary cookies. We do not track visitors or have visitors tracked by 3rd parties.

Further information on privacy can be found in the Intershop Privacy Policy and Legal Notice.
Customer Support
Knowledge Base
Product Resources
Tickets