Focal Point
How to get a variable in the parameter?

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/9981097331

August 30, 2004, 10:50 AM
Ringo
How to get a variable in the parameter?
Can anyone help me?!

How can I get a variable from the parameter string, eg: stringA is stored string '123456' and is passed from a parameters. I would like to get the value with position 3 in the stringA.
August 30, 2004, 11:56 AM
jimster06
GETTOK and SUBSTR are functions that can be used to extract elements from a string.
August 30, 2004, 11:01 PM
Piipster
Also,

-SET &STRING3 = EDIT(&STRINGA,'$$9');
August 31, 2004, 02:05 PM
Ringo
Thank you, I will try it !