Document Properties
Kbid
P24758
Last Modified
04-Feb-2020
Added to KB
20-Jun-2013
Public Access
Everyone
Status
Online
Doc Type
References
Product
  • ICM 7.10
  • ICM 11
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.
Home
Knowledge Base
Product Releases
Log on to continue
This Knowledge Base document is reserved for registered customers.
Log on with your Intershop Entra ID to continue.
Write an email to supportadmin@intershop.de if you experience login issues,
or if you want to register as customer.