Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
ilanbaruch
Specialist
Specialist

text functions

hi,

I have a field in a table that holds information ..

output example:

<Account=jack johns>,<ResolvedIP=111.222.44.333>,<ResolvedCountry=AA>

I need only the ResolvedIP Value (111.222.44.333)

any idea how can I exclude it and create an IP field?

thank you

Ilan

15 Replies
marcus_sommer

Try:

= textbetween('<Account=jack johns>,<ResolvedIP=111.222.44.333>,<ResolvedCountry=AA>', 'ResolvedIP=', '>')

- Marcus

HirisH_V7
Master
Master

Hi ,

You can Split the Field like this below,

T:

LOAD

Mid([IP field],21,27) as NewIP,

'<' &TextBetween([IP field],'><','><') &'>'as NewIP2,

* INLINE [

IP field

<Account=jack johns><ResolvedIP=111.222.44.333><ResolvedCountry=AA>

];

By using Mid Function and TextBetween Function,

Output:

Field Split mid.PNG

Hope this Helps,

PFA,

Regards,

HirisH

HirisH
“Aspire to Inspire before we Expire!”
Not applicable

Hi iLan,

You can try the textbetween as mentioned by Marcus, there can be many ways of achieving this using string functions in qlikview.

sol 1:

= PurgeChar(SubField('<Account=jack johns>,<ResolvedIP=111.222.44.333>,<ResolvedCountry=AA>',',',2),'<ResolvedIP=<>,');

sol 2 :

= PurgeChar(mid('<Account=jack johns>,<ResolvedIP=111.222.44.333>,<ResolvedCountry=AA>', index('<Account=jack johns>,<ResolvedIP=111.222.44.333>,<ResolvedCountry=AA>','P=')+2,15),',<>')

Hope it helps.

VC

awhitfield
Partner - Champion
Partner - Champion

Hi ilan,

can you supply an example data file please?

Andy

ilanbaruch
Specialist
Specialist
Author

thank you it helps,

if I want it to work on all the table data, some name values other then 21,27 ?

for example :

<Account=cristiano johns><ResolvedIP=111.222.44.333><ResolvedCountry=AA>

avinashelite

please share the sample app with the data

HirisH_V7
Master
Master

Hi ilan ,

Please check updated post.

-Hirish

HirisH
“Aspire to Inspire before we Expire!”
marcus_sommer

A pure solution with mid() couldn't stable work - the content of the string will be probably different so that you need further search-functions like index() - but then is textbetween() easier.

Another possibilty could be to split the complete string with subfield() like:

Load subfield(Field, '=', 1) as Attribut, subfield(Field, '=', 2) as Value;

Load purgechar(subfield(Field, ','), '<>') as Field;

Load * Inline [

Field

<Account=jack johns>,<ResolvedIP=111.222.44.333>,<ResolvedCountry=AA>

];

- Marcus

Kushal_Chawda

try this

Data:

LOAD *,subfield(purgechar(SubField(mid(Input,Index(Input,'ResolvedIP')),',',1),'>'),'=',2) as Output Inline [

Input

"<Account=jack johns>,<ResolvedIP=111.222.44.333>,<ResolvedCountry=AA>"

"<Account=jack johns>,<ResolvedCountry=AA>,<ResolvedIP=12.22.33.44>"  ];

Capture.JPG