cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Choose Language Hide Translation Bar
View Original Published Thread

How to remove quotation marks from the result of Concat command

ardavanz
Level I

Hi all, 

 

I am trying to concatenate the content of the row with the parsed characters of its previous rows:

Word( 1, :Col1[Row() - 1] || "-" || Words( :Col1, "-" )[2] )

 

Col1 has the following two rows:

ABCD123-1

ABCD123-2

 

It results the following:

"ABCD123-1-2"

 

How can I remove the quotation marks sow it shows the following

ABCD123-1-2

 

 

Journeyman...
1 REPLY 1
Craige_Hales
Super User


Re: How to remove quotation marks from the result of Concat command

They are not really there. The print and show functions add them when displayed to the log, as does the log itself when displaying a character result. To see it plain, use write(your expression). The write function does not decorate the value.
Craige