Hello,everybody!
I'm creating a fuction modul or a class's method. But met a problem.I want to change the exporting parameter's type dynamically.
Here is what I want to do.
import data:
stru_name (structure name) dictionary table
indata (input data) string
output
outdata (output data)
The output data will be divided according to the structure of stru_name.
For example:
structure(a(3),b(3),c(3))
indata(123456789)
u2192outdata(123,456,789)
structure(a(2),b(3),c(4))
indata(123456789)
u2192outdata(12,345,6789)
Can anybody give me some advices?
I will appreciate your help.
Thanks.
Chen.