Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Yet another solution that cares not the order of the terms in the angle brackets:
=SubField(
Right(TextToBeScanned,
Index(TextToBeScanned, 'ResolvedIP=') + len('<ResolvedIP=')+1)
, '>',1)
hi,
thank you for your help, can I set as input the original field?
hi,
thank you for your help, can I set as 'TextToBeScanned' the original field?
Hi Ilan,
Yes replace 'TextToBeScanned' with your field. Sorry if I was not very clear.
Cheers
Andrew
Yes, You can replace Input with your actual field name
hi and thank you,
in sol1 can I use the field instead of the string (<Account=jack johns>,<ResolvedIP=111.222.44.333>,<ResolvedCountry=AA>')?
like this:
PurgeChar(SubField(INFO,',',2),'<ResolvedIP=<>,');