hardly ever tried another
editor.
Greetings
Kay
--------
Kay Bieri
Sidlerstr. 5, 3012 Bern
Switzerland
email: [EMAIL PROTECTED] phone: +41 (031) 631 8682
--
To unsubscrib
g and using /e as well before but
I forgot to add the doublequotes around the [$1].
Kay
Kay Bieri
Sidlerstr. 5, 3012 Bern
Switzerland
email: [EMAIL PROTECTED] phone: +41 (031) 631 8682
---
ne do it more
easily with 'index' and alike?
I'd be happy if somebody could give me some comment on this. I attached a
sample maple input file on this email.
I checked cpan for modules that convert maple input to mathematica output
but didn't find anything.
Best wishes
Kay
---
> Right! I have the same idea as you, and I have this :
>
> my @list = ('1234', '4567', '789A', 'BCDE', 'FGHI');
> my $GetLocation = 0;
> my $value = 'BCDE';
>
> for (my $atLoc = 0; $atLoc <= $#list and ! $GetLocation ; $atLoc++)
> { $GetLocation = $atLoc if ($value eq $list[$atLoc]) }
>
> And