On Dec 24 2008, 9:10 am, "concern shoko" <[email protected]> wrote:
> Hi,
>
> Just remember that all variables are arrays, doesnt matter whether its a
> String or Integer.
>
> arr[x,n] - this will give you N values from variable *arr* starting from
> position X.
>
> for example NN = "ABCDEFGH"
> NN[1,4] = "ABCD"
> NN[3,2] = "CD"
>
> i hope i have clarified.
>
> *Concern*
>
It might also be worth mentioning that as all variables (including
arrays) are strings, taking arr[x,n] could include dynamic array
delimiters. It follows that you will often want to limit the
extraction to a string from a single "atomic" field - as in arr<x,y>
[n,nn]. Put simply, you might be wise to code SUBSTRNG=STRNG<1,1>[1,4]
instead of SUBSTRNG=STRNG[1,4]. Have I clarified or confused?
--~--~---------~--~----~------------~-------~--~----~
Please read the posting guidelines at:
http://groups.google.com/group/jBASE/web/Posting%20Guidelines
IMPORTANT: Type T24: at the start of the subject line for questions specific to
Globus/T24
To post, send email to [email protected]
To unsubscribe, send email to [email protected]
For more options, visit this group at http://groups.google.com/group/jBASE?hl=en
-~----------~----~----~----~------~----~------~--~---