Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

The SplitTransformation can split text (strings) based on any character or value e.g. take the original file name and split underline or dash to then use the output in a JoinByTransformation and concatenate the filename parts with a space.  

Input: "picturepark-pim-dam-platform.pdf"

SplitTransformation: 

  • separators: "-", "_" , "."
  • keepEmpty: null
  • trim: null

Output: picturepark pim dam platform pdf

Input: "title that is written into the title field" 

SplitTransformation: 

  • separators: " "
  • keepEmpty: null
  • trim: yes
  • followed by a JoinByTransformation: join by "-"

Output: title-that-is-written-into-the-title-field (a slug you can use for publishing online)

Specific Definitions

Select the condition.

PropertyValue
kind

SplitTransformation

separators

Separators to use, supports variables, an array of strings including escape sequences or null to split on any white space character.

keepEmptyKeeps empty items. Empty items will be returned as empty strings.
trimTrims each entry for punctuation and white space.
"transformationGroups": [
	{
		"kind": "TransformationGroup",
		"inputs": [
			"basicInformation.title.x-default"
		],
		"transformations": [
		{
		"kind": "SplitTransformation",
		"separators": " ",
		"trim": true
		}
		],
		"storeIn": "slugOutput"
	}
]
  • No labels