Skoda wrote:
> does anybody have the function that converts sequences with many other
> sequences under it, and sequences under it, into one sequence which has
> just atoms(=string)
> i have tried to write such function but it would be quite complicated
> because there can be unlimited number of sequences under sequences...
--Warning untested code:
function sequence_to_string(sequence s)
sequence rs
rs={}
for i=1 to length(s) do
if atom(s[i]) then
rs&=s[i]
else
rs&=sequence_to_string(s[i])
end if
end for
return rs
end function
-- Mike Nelson
|
Not Categorized, Please Help
|
|