replace string with single quote string

User: "Saurabh_Sawant_24"
New Altair Community Member
Updated by Jocelyn
I have a column attribute with  following values as

SENDER BANK
RECEIVING BANK
SENDER
RECEIVER

I want a result in single string as follows:
'SENDER BANK','RECEIVING BANK','SENDER','RECEIVER' 

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "kayman"
    New Altair Community Member
    Accepted Answer
    Step 1 : Replace your attribute as follows : find ^(.*)$ and replace with '$1' , this already quotes your attribute
    Step 2 : Use the aggregate operator and use concatenate. Now you will get 'SENDER BANK'|'RECEIVING BANK'|...
    Step 3 : Replace \| (escaped pipe symbol) with , (comma)