The workflow action splits string into collection of substrings using separator string.
Parameter |
Description |
Example |
---|---|---|
ResultVariable |
Specify dictionary workflow variable to store collection of substrings. |
Dictionary variable with following structure: [
"test1",
"test2",
"test3",
"test4"
]
|
Parameter |
Description |
Example |
---|---|---|
SourceString |
Source string |
test1;test2;test3;test4 |
SplitString |
Separator string |
|
Concatenate the values of dictionary into single string
Parameter |
Description |
Example |
---|---|---|
Result string |
String value will contain the result of operation |
|
Parameter |
Description |
Example |
---|---|---|
Source dictionary |
Data source, type dictionary |
Variable:Attachments |
Separator |
Separator that will be used for string concatenation |
‘;’ or any of symbols or string |
Path |
Key for select or path |
|
The workflow action formats date using specified format string.
Parameter |
Description |
Example |
---|---|---|
ResultString |
Specify workflow variable to formatted string |
Friday 29 August |
Parameter |
Description |
Example |
---|---|---|
SourceDate |
Date to format |
3/21/2014 7:27:10 PM |
FormatString |
Format string. The workflow action uses .NET method DateTime.ToString(string format), you can find possible format strings on MSDN: |
d
D
MMM
d MMMM
ddd d MMM
|
The workflow action returns length of a string.
Parameter |
Description |
Example |
---|---|---|
ResultVariable |
Specify workflow variable to store length |
11 |
Parameter |
Description |
Example |
---|---|---|
SourceString |
Source string |
test string |
The workflow action checks if a string contains a substring. It allows optionally ignore case of the source string and the substing.
Parameter |
Description |
Example |
---|---|---|
ResultVariable |
Specify workflow variable to store result. |
Yes |
Parameter |
Description |
Example |
---|---|---|
IgnoreCase |
Allows to ignore case of the source string and of the substring. Default value: Yes. |
Yes No |
SourceString |
Source string |
test string |
Substring |
Substring |
test |
The workflow action checks if a string starts with a substring. It allows optionally ignore case of the source string and the substing.
Parameter |
Description |
Example |
---|---|---|
ResultVariable |
Specify workflow variable to store result. |
Yes |
Parameter |
Description |
Example |
---|---|---|
IgnoreCase |
Allows to ignore case of the source string and of the substring. Default value: Yes. |
Yes No |
SourceString |
Source string |
test string |
Substring |
Substring |
te |
The workflow action checks if a string ends with a substring. It allows optionally ignore case of the source string and the substing.
Parameter |
Description |
Example |
---|---|---|
ResultVariable |
Specify workflow variable to store result. |
Yes |
Parameter |
Description |
Example |
---|---|---|
IgnoreCase |
Allows to ignore case of the source string and of the substring. Default value: Yes. |
Yes No |
SourceString |
Source string |
test string |
Substring |
Substring |
ing |