Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
jblomqvist
Specialist
Specialist

How can I extract something from this string text?

Hi all,

I have the following data:

How can I extract the code between the symbols ^ ^ above?

I want those values to exist in a separate field

Thank you!

1 Solution

Accepted Solutions
Anonymous
Not applicable

Either

subfield (FieldName, '^', 2)

or

TextBetween(FieldName, 'CLIENT001^', '^20')

Edit:

or

mid(FieldName,11,7)

or ...

View solution in original post

2 Replies
Anonymous
Not applicable

Either

subfield (FieldName, '^', 2)

or

TextBetween(FieldName, 'CLIENT001^', '^20')

Edit:

or

mid(FieldName,11,7)

or ...

maxgro
MVP
MVP


load

yourfield,

subfield(yourfield, '^' ,1) as firstfield,

subfield(yourfield, '^' ,2) as secondfield,

.........

from

.......