You are viewing limited content. For full access, please sign in.

Question

Question

How to substitute Line Feed

asked on December 16, 2019

Hi all,

 

I have a document with Line Feed inside [LF] and I want to substitue them.

Using workflow, I tried "\r", "\n", and "\r\n" but nothing.

 

When I copy/paste the element, I don't have anything in my visual.

 

I don't know how to do.

Please help.

0 0

Answer

SELECTED ANSWER
replied on December 18, 2019

Ok I found how to do

Just use the CHAR code instead.

CHAR(34) = " (double quote)

CHAR(39) = ' (simple quote)

E.G : SUBSTITUTE(%(token), CHAR(34), CHAR(39) )

 

For my "LF" (line feed)

SUBSTITUTE(%(token), CHAR(10),"")

 

This is the URL for the CHAR CODE

https://fr.wikibooks.org/wiki/Les_ASCII_de_0_%C3%A0_127/La_table_ASCII

1 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.