IBM 15 Switch User Manual


 
113
Building CLEM Expressions
Determining the length (number of characters) for a string variable—length(STRING).
Checking the alphabetical orderin g of string values—alphabefore(STRING1, STRING2).
Removing leading or tra iling white space from values—trim(STRING), trim_start(STRING),
or trimend(STRING).
Extract the rst or last n characters from a string—startstring(LENGTH, STRING) or
endstring(LENGTH, STRING). For example, suppose you have a eld named item that combines
a pr oduct name with a four-digit ID code (ACME CAMERA-D109). To create a new eld tha t
contains only the four-digit code, specify the following formula in a Derive node:
endstring(4, item)
Matching a specic pattern—STRING matches PATTERN. For example, to select persons with
“market” a nywhere in their job title, you could specify the following in a Select node:
job_title matches "*market*"
Replacing all instances of a substring within a string —replace(SUBSTRING, NEWSUBSTRING,
STRING). For example, to r eplace all instan ces of an unsupported character, such as a vertical
pipe ( | ), with a semicolon prior to text mining, use the replace function in a Filler node.
Under Fill in elds:, select all elds where the character may occur. For the Replace: condition ,
select Always, and specify the following condition under Replace with:
replace('|',';',@FIELD)
Deriving a ag eld based on the presence of a specic substring. For example, you could
use a string function in a Derive node to generate a separate ag eld for each response
with an expression such as:
hassubstring(museums,"museum_of_design")
For more information , see the topic String Functions in Chapter 8 on p. 141.
Handling Blanks and Missing Values
Replacing blanks or missing values is a common data preparation task for data miners. CLEM
provides you with a number of tools to automate blank handling. The Filler node is the most
common place to work with blanks; however, the following functions can be used in any node that
accepts CLEM expressions:
@BLANK(FIELD) can be used to d etermine records whose values are blank for a par ticular
eld, such as Age.
@NULL(FIELD) can be used to determine records whose values are system-missing for the
specied eld(s). In IBM® SPSS® Modeler, system-missing values are displayed as $null$
values.