Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Gowtham174
Creator
Creator

delimit the fields

Hi ALl,

 

I have the below fields and i need to separate based on the data

input

[(337, 118, 58, 80), (1, 65, 73, 84), (428, 21, 132, 171)]

Output

in difference fields

 

3371185880

 

 

Thanks,

Gowtham

1 Solution

Accepted Solutions
HirisH_V7
Master
Master

PurgeChar(SubField(F1,',',1),'(,)') as 1
Based on ',' Counts keep on increasing Field no.
PurgeChar(SubField(F1,',',2),'(,)') as 1
PurgeChar(SubField(F1,',',3),'(,)') as 1

HTH,
HirisH
HirisH
“Aspire to Inspire before we Expire!”

View solution in original post

2 Replies
HirisH_V7
Master
Master

PurgeChar(SubField(F1,',',1),'(,)') as 1
Based on ',' Counts keep on increasing Field no.
PurgeChar(SubField(F1,',',2),'(,)') as 1
PurgeChar(SubField(F1,',',3),'(,)') as 1

HTH,
HirisH
HirisH
“Aspire to Inspire before we Expire!”
pradosh_thakur
Master II
Master II

Can you please tell what happens to the (1, 65, 73, 84), (428, 21, 132, 171) bit? if you be a bit clear on your input and output, it would be easier to help.
Learning never stops.