You may be trying to access this site from a secured browser on the server. Please enable scripts and reload this page.
Turn on more accessible mode
Turn off more accessible mode
Skip Ribbon Commands
Skip to main content
Turn off Animations
Turn on Animations
SharePoint
Sign In
Use SHIFT+ENTER to open the menu (new window).
To navigate through the Ribbon, use standard browser navigation keys. To skip between groups, use Ctrl+LEFT or Ctrl+RIGHT. To jump to the first Ribbon tab use Ctrl+[. To jump to the last selected command use Ctrl+]. To activate a command, use Enter.
Browse
Tab 1 of 2.
Page
Tab 2 of 2.
Follow
Bluespring Online
Bluespring ProcessView
Bluespring LeanView
BPM5 Documentation
Currently selected
String Functions
It looks like your browser does not have JavaScript enabled. Please turn on JavaScript and try again.
Updated Pages
Update Specific Group LDAP Entries
Home
Write Values to a Password-protected Workbook and Worksheet
Write Data Item Values to a Delimited Text File
Update Specific User LDAP Entries
Documents
Welcome & Introduction
Guides
Hardware & Software Requirements (PDF)
Install Guide (PDF)
Activity Reference Guide (PDF)
BPM Designer Topics
Workspace and Solution Topics
Solution Item Topics
Activity Topics
Common Expression Functions
BPM Admin Topics
Process and Activity Monitoring (with Filters)
Service Monitoring
View All Site Content
Recent
Images
Business View Topics
Feedback
Solution Items and Activities
Guides
Home
About
The most common string functions are provided in the table below. In addition the description, syntax, arguments, and an example have all been provided.
Function Name
Description
Syntax
Arguments
Example
Concat
Generates a string concatenation of two or more expressions. This function would be equally beneficial if used to define a rule or a calculation data item.
Concat(string, stringX)
string:
an epression
stringX':
2d string to add
Concat("A","B") returns "AB"
Instr
Returns the position of the first occurrence of one string within another string. This function would be equally beneficial if used to define a rule or a calculation data item.
Instr(string, findString)
string:
a string
findString:
The string to find
Instr("ABC", "B") returns 1
Note:
The first position is 0, not 1.
Mid
Returns a string containing a specified number
of characters from a string.
Mid(string, start, numChars)
string:
a string
start:
Character position in
string which the part to be
taken starts.
numChars:
Number of characters to return
Mid(DataItem.Example, Largest(InStr(DataItem.Example,";#")+2,0))
Left
Returns the left part of a tring with the given
number of characters.
Left(string, numChars)
string:
a string
numChars:
integer-numeric
expression indicating how many
characters to return
Left("ABC", 2) returns AB
Right
Returns a string containing a specified number of
characters from the right side of a string.
Right(string, numChars)
string:
a string
numChars:
integer-numeric
expression indicating how many
characters to return
Right("ABC", 1) returns C
Related Topics
Date Functions
Comparison Functions
Math Functions
Bluespring-Specific Functions
Source
BPM Designer Topics
>
Common Expression Functions
Last modified at 7/31/2020 12:01 PM