toblerone65
MIS
Friends I need help on a formula
I have field with values like
opslib.vip.smf.ebay.com or opslib.vip.smf.ebay.com-8091 ,etc
I want to capture the value till only .com , is there a way to do it? right now I am already using formula to eliminate few values
stringvar str1:= {Sheet1_.pool_shrt_nm};
numbervar x:= InStr ( str1, "808");
str1 := if x = 0 then str1 else replace(str1, mid(str1, x-1, 5), "");
str1 := replace( str1, "-iapp", "-app");
str1 := replace( str1, "_iapp", "_app")
Thanks a ton
Tob
I have field with values like
opslib.vip.smf.ebay.com or opslib.vip.smf.ebay.com-8091 ,etc
I want to capture the value till only .com , is there a way to do it? right now I am already using formula to eliminate few values
stringvar str1:= {Sheet1_.pool_shrt_nm};
numbervar x:= InStr ( str1, "808");
str1 := if x = 0 then str1 else replace(str1, mid(str1, x-1, 5), "");
str1 := replace( str1, "-iapp", "-app");
str1 := replace( str1, "_iapp", "_app")
Thanks a ton
Tob