Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi all
I have fields values like
Country |
---|
[COUNTRY].[US] |
COUNTRY].[UK] |
COUNTRY].[IN] |
I want output like this.
COUNTRY |
---|
US |
UK |
IN |
How we can get it,any suggestions.
Thanks
Load
TextBetween(SubField(Country, '.',2), '[' , ']') as COUNTRY
Hi,
you can use the expression in General Proprieties in Field option.
Replace(Country, '[Country].',' ')
Regards,
Use below in your script instead of Country
TextBetween(Country,'[',']',2) as Country
Hi,
Try like this,
TextBetween(Subfield(COUNTRY,'.',2), '[' , ']') as new_COUNTRY
Regards
try below
TextBetween(COUNTRY, '[' , ']',2) as COUNTRY
Regards
ASHFAQ
Just want to know whether my answer works for you or not...
Yes Manish it was also worked..unfortunatly I did not notice your answer.