Search more than 200 articles to learn more about creating and automating your product catalogs
Tip: Start typing in the input box for immediate search results.
REMOVEBLANKLINES – Remove blank lines from string
Overview
This Custom Field removes blanks lines and empty paragraphs from a given string. Only lines ending with a hard return are removed. Formattings tags are ignored. This function is useful for combining the contents of multiple fields and ensuring that empty paragraphs do not result from the concatenation.
Syntax
REMOVEBLANKLINES(String)
Element | Description |
---|---|
String | The text to process. |
Example
Field A | Field B | Field C |
Ford Motor Company | Toyota |
Without removing blank lines, a concatenation of these fields would be:
CONCAT(FIELDSTR(‘Field A’),’^p’,FIELDSTR(‘Field B’),’^p’,FIELDSTR(‘Field C’))
This would result in an empty paragragh because Field B is empty:
CONCAT(FIELSTR(‘Field A’),’^p’,FIELSTR(‘Field B’),’^p’,FIELDSTR(‘Field C’)) |
---|
Ford Motor Company |
Toyota |
Incorporating the REMOVEBLANKLINES Custom Field will remove any empty paragraphs:
REMOVEBLANKLINES(CONCAT(FIELSTR(‘Field A’),’^p’,FIELSTR(‘Field B’),’^p’,FIELDSTR(‘Field C’))) |
Ford Motor Company |
Toyota |