Hi,
I get a variable in my url called strMonths,
which is a list of monthes seperated with @ sign.
(example: &strMonths=1@3@5@11@12)
I need to get these monthes into variables.
Is there a way to do this?
If the string format is consistant, just use a -SET with EDIT as follows:
-SET &MONTH1 = EDIT(&strMonths,'9');
-SET &MONTH2 = EDIT(&strMonths,'$$9');
-SET &MONTH3 = EDIT(&strMonths,'$$$$9');
-SET &MONTH4 = EDIT(&strMonths,'$$$$$$9');
No it's not consistant and it's a dynamic,
meaning I don't know how many monthes will be send.
The only thing I know is that "@" is used to seperate between them.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.