Welcome to Catalog Tips

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.

< All Topics
Print

WORDWRAP – Word wrap a string to specified length

Overview

This Custom Field word wraps the given string to a specified line length.

Syntax

WORDWRAP(Text,LineLength,BreakCharacter)

WORDWRAP(FIELDSTR(‘description’),80,^n)

Element String
Text The text to wrap.
LineLength The maximum number of characters per line.
BreakCharacter The character to use to break the line.

Example

WORDWRAP(FIELDSTR(‘description’),20,^n)

Description WORDWRAP(FIELDSTR(‘description’),20,^n)
The quick brown fox jumps over the lazy dog.

The quick brown fox

jumps over the lazy

dog.

The red-brown fox jumps over the lazy dog.

The red-brown fox ju

mps over the lazy do

g.

See also

Table of Contents