I would like to know if you can display only certain data into a field
between commas or any other symbol without using the curshort feature.
For example. I have the following.

Part, A3472, Desc: Controller: Price$ 45.00

I just need this out of it in a single form field.

A3472

I cannot use the cutshort feature because my part numbers are
different lengths.

Thanks for any help in advance.

Thanks,
gil@ambry.com

Re: Display Data Between Commas In Form ASP by Mark

Mark
Wed Aug 11 11:55:15 CDT 2004

cutshort feature????

in vbScript:

aData = Split( strData, ',' )
strPartNo = aData(1)


--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com


"gotcha" <gil@ambry.com> wrote in message
news:73a4f99a.0408110805.4143cb0b@posting.google.com...
> I would like to know if you can display only certain data into a field
> between commas or any other symbol without using the curshort feature.
> For example. I have the following.
>
> Part, A3472, Desc: Controller: Price$ 45.00
>
> I just need this out of it in a single form field.
>
> A3472
>
> I cannot use the cutshort feature because my part numbers are
> different lengths.
>
> Thanks for any help in advance.
>
> Thanks,
> gil@ambry.com