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*

On Wed, Dec 24, 2008 at 3:44 AM, Rick Weiser <[email protected]> wrote:

>
> Very simple:
>
> x = arr1[1,1]
> y = arr2[1,1]
>
> z = x * y
>
> I hope this helps.
>
> Rick
>
> On Dec 24, 12:16 am, kavi <[email protected]> wrote:
> > There are 2 arrays
> > arr1 = "123456789"
> > arr2 = "123456789"
> >
> > I want to take the first character from first array,
> > first character from 2nd array
> >
> > Multiply both value and add the multiplied values.
> >
> > How can i do this??????
> >
>


-- 
C. Shoko
Temenos GLOBUS Developer
|Nedbank Africa|South Africa|

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to