Skip to main content

Translate out embedded line feed in XML data field

Comments

1 comment

  • David Paras

    You can try using the normalize-space() or translate() string functions within the data mapper to remove the line feeds.

    Ex: normalize-space(ItemDescription) or translate(ItemDescription, ' 	
', ' ')

    0

Please sign in to leave a comment.