|
Hello Charles, > Usually, I follow what you are doing. However, the following has me > scratching my head: [SNIP] > > x = 0; > > tokens(*) = gettok( blah : '|' : x ); I guess the answer lies in the question "What does (*) do?" When you assign all values of an array in this manner, array(*) = 'something'; what you're really doing is looping through the entire array, assinging 'something' to every element. So, the following two code snippets are equivalent: x = 0; tokens(*) = gettok( blah : '|' : x ); and: x = 0; for i = 1 to %elem(tokens); tokens(i) = gettok( blah : '|' : x ); endfor; Normally, I'd use the latter. I think it's easier to tell what's happening -- but having been told earlier this week that the SCAN op-code is easier than the %scan() BIF because it can return an array in one line of code, I figured I'd do it this way. :)
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.