Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Substring and Instring function 1

Status
Not open for further replies.

Hm786

Programmer
Apr 5, 2001
88
US
Hi,

I need a formula to extract only "DIG REG" from
DIG REG-DIGITAL REGULAR field value. I am using Left and instr function to get the result but not able to get rid of the -.


Thanks,
Hamida
 
If it is always on the left, then you just need:

left({table.field,7)

If it could be in another position in the string, use:

mid({table.string},instr({table.string},"DIG REG"),7)

-LB
 
What's wrong with left(your.field,7)? The "7" is for your 6 characters + the space.

DataDog
'Failure Is Not An Option'
 
Ok, I have these field values ANLG REG-ANALOG REGULAR,
DIG RBLD-DIGITAL REBUILD,DBS NATIONAL, DIG REG CMTY-DIGITAL REGULAR COMMUNITY SPECIFIC.But I need to show only the value before the - and if the - is not there then only the regular value. My formula

if (instr({Command.t_field_value},'-'))> 0 then

TrimRight (left({Command.t_field_value},(instr({Command.t_field_value},'-'))))
else
{Command.t_field_value}
gives me what I want except with a dash. If I user


Thanks,
Hamida
 
Hi,
Basically you want all the chars up to the last char to the left of the '-' but not the '-' itself, so the formula would be:

if (instr({Command.t_field_value},'-'))> 0 then

TrimRight (left({Command.t_field_value},(instr({Command.t_field_value},'-')-1 )))
else
{Command.t_field_value}

Not sure I got the placement correct in the multiple parens, but you will be able to figure it out..





[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
Thank you Turkbear, your formula worked like a charm and mine also.
My formula goes like this

if (instr({Command.t_field_value},'-'))> 0 then
mid({Command.t_field_value},1,INSTR({Command.t_field_value},'-') - 1)
else
{Command.t_field_value}


Thank you for your quick response.

Hamida
 
Hi,
No Problem - I use that type of formula a lot to parse names into 'normal' format when they are stored in the form:
LastName,FirstName MI



[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top